473,378 Members | 1,617 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

XML over CSS

Hi,

I am a relatively new PHP programmer and I am familiar with programming
logic of web sites. I now want to get a good grasp of content and
presentation. I am trying to figure out if I should focus on XML and XSL
or CSS.

Can XML and XSL be used to show content to a browser? or can only HTML do
that?

I am thinking that if I could do everything in XML and XSL that I could do
using CSS that I might want to focus on XML and XSL because I can also do
other things with XML and XSL like Web services.

But, is XML and XSL harder to use than CSS and HTML? Signifigantly harder?

I am planning on building large content management type Web applications.

Your humble opinion is much appreciated (YHOIMA)
Jul 17 '05 #1
16 1690
Mudge wrote:
I am a relatively new PHP programmer and I am familiar with programming
logic of web sites. I now want to get a good grasp of content and
presentation. I am trying to figure out if I should focus on XML and XSL
or CSS.

Can XML and XSL be used to show content to a browser? or can only HTML do
that?

I am thinking that if I could do everything in XML and XSL that I could do
using CSS that I might want to focus on XML and XSL because I can also do
other things with XML and XSL like Web services.

But, is XML and XSL harder to use than CSS and HTML? Signifigantly
harder?

I am planning on building large content management type Web applications.

Your humble opinion is much appreciated (YHOIMA)


BTW - you should crosspost not multipost so that when we reply it goes to
all the relevant groups... anyway, here is my answer to your multiposted
question at alt.php

XSL is used to transform XML into another format. In the case of a website
you are transforming the source XML into HTML/XHTML. Whether or not you use
CSS for style and/or positioning isn't actually relevant to your choice of
XML/XSL.

The nice thing with using XSL to create HTML is that it ensures you close
all your tags (eg <br /> <input type="text" /> instead of <br> and <input
type="text">) which helps with making your pages XHTML compliant (this
alone does not make them compliant, but it helps out).

Another nice thing is it helps move the presentation layer of your
application away from the business logic, if you are wanting to create a
tiered/layered appplication solution.

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/
Jul 17 '05 #2
Chris Hope wrote:
Mudge wrote:
I am a relatively new PHP programmer and I am familiar with programming
logic of web sites. I now want to get a good grasp of content and
presentation. I am trying to figure out if I should focus on XML and XSL
or CSS.

Can XML and XSL be used to show content to a browser? or can only HTML
do that?

I am thinking that if I could do everything in XML and XSL that I could
do using CSS that I might want to focus on XML and XSL because I can also
do other things with XML and XSL like Web services.

But, is XML and XSL harder to use than CSS and HTML? Signifigantly
harder?

I am planning on building large content management type Web applications.

Your humble opinion is much appreciated (YHOIMA)


BTW - you should crosspost not multipost so that when we reply it goes to
all the relevant groups... anyway, here is my answer to your multiposted
question at alt.php

XSL is used to transform XML into another format. In the case of a website
you are transforming the source XML into HTML/XHTML. Whether or not you
use CSS for style and/or positioning isn't actually relevant to your
choice of XML/XSL.

The nice thing with using XSL to create HTML is that it ensures you close
all your tags (eg <br /> <input type="text" /> instead of <br> and <input
type="text">) which helps with making your pages XHTML compliant (this
alone does not make them compliant, but it helps out).

Another nice thing is it helps move the presentation layer of your
application away from the business logic, if you are wanting to create a
tiered/layered appplication solution.


Please explain how it helps move the presentation layer away from the
business logic.


Jul 17 '05 #3
Mudge wrote:
Another nice thing is it helps move the presentation layer of your
aabilityion away from the business logic, if you are wanting to create a
tiered/layered appplication solution.


Please explain how it helps move the presentation layer away from the
business logic.


Let's say you have a basic 3 tier/layer system. (There are other models
which feature additional tiers at different places, and allow for more
abstraction from the database using database objects. Interesting stuff but
beyond the scope of this post).

The first tier is database access. You might use something like the PEAR
library to handle your database stuff.

In the middle tier you have your business logic, which handles stuff like
session management, data manipulation, calculations etc. Using an XML/XSL
model, you use this tier to construct the XML.

The 3rd tier handles the presentation of what's been done in the middle tier
by turning it into a web page. Using the XML/XSL model we're manipulating
the data given to us by an XML string with an XSL file at this tier.

XSL is more of a presentation language than a programming language. It has
some ability to loop and call functions etc but it's mainly good at turning
XML into another format, in this case HTML.

My own site uses this exact tiered approach. Data is fetched from the
database using calls through the PEAR library and manipulated into XML
through the use of the XML_Tree package -
http://pear.php.net/manual/en/package.xml.xml-tree.php

I then use XSL stylesheets to turn the XML into HTML on the server-side
which is then sent to the browser. Actual page layout is done using CSS
positioning with a style sheet. (Note that this was the first site I used
CSS positioning for and it needs a bit of work when ever I get time to...)

There was someone else who posted within the last week or so who uses a
similar tiered approach with XML/XSL.

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/
Jul 17 '05 #4
Chris Hope wrote:
Mudge wrote:
Another nice thing is it helps move the presentation layer of your
aabilityion away from the business logic, if you are wanting to create a
tiered/layered appplication solution.


Please explain how it helps move the presentation layer away from the
business logic.


Let's say you have a basic 3 tier/layer system. (There are other models
which feature additional tiers at different places, and allow for more
abstraction from the database using database objects. Interesting stuff
but beyond the scope of this post).

The first tier is database access. You might use something like the PEAR
library to handle your database stuff.

In the middle tier you have your business logic, which handles stuff like
session management, data manipulation, calculations etc. Using an XML/XSL
model, you use this tier to construct the XML.

The 3rd tier handles the presentation of what's been done in the middle
tier by turning it into a web page. Using the XML/XSL model we're
manipulating the data given to us by an XML string with an XSL file at
this tier.

XSL is more of a presentation language than a programming language. It has
some ability to loop and call functions etc but it's mainly good at
turning XML into another format, in this case HTML.

My own site uses this exact tiered approach. Data is fetched from the
database using calls through the PEAR library and manipulated into XML
through the use of the XML_Tree package -
http://pear.php.net/manual/en/package.xml.xml-tree.php

I then use XSL stylesheets to turn the XML into HTML on the server-side
which is then sent to the browser. Actual page layout is done using CSS
positioning with a style sheet. (Note that this was the first site I used
CSS positioning for and it needs a bit of work when ever I get time to...)

There was someone else who posted within the last week or so who uses a
similar tiered approach with XML/XSL.


Thank you. Do you think that generating XML and then using XSL to change it
into HTML and then using CSS for page layout and display -- do you think
this makes it easier to separate presentation from business logic than just
using HTML and CSS?

Jul 17 '05 #5
Mudge wrote:
Thank you.**Do*you*think*that*generating*XML*and*then*us ing*XSL*to*change
it into HTML and then using CSS for page layout and display -- do you
think this makes it easier to separate presentation from business logic
than just using HTML and CSS?


It depends how you code your PHP. But generally when people code the HTML
output in the PHP you often end up with a lot of HTML and PHP being mixed
up together with database calls in the middle of the HTML output. There's
not necessarily anything wrong with this (and I've done it plenty of times
in the past) but it is nice to separate that stuff from the output. Using
XML/XSL enforces the separation.

There are other methods though, such as using a templated solution like
Smarty (I've never used it myself but seen it mentioned here before).

A lot of your decision really comes down to how much you want to have to
learn. If you choose XML & XSL to do the presentation layer then you're
going to have to learn XSL as well as PHP. An excellent XSL reference book
(if you decide to learn it) is http://tinyurl.com/36jq9

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/
Jul 17 '05 #6
"Chris Hope" <bl*******@electrictoolbox.com> wrote in message
news:10************@216.128.74.129...
Mudge wrote:
I am a relatively new PHP programmer and I am familiar with programming
logic of web sites. I now want to get a good grasp of content and
presentation. I am trying to figure out if I should focus on XML and XSL or CSS.

Can XML and XSL be used to show content to a browser? or can only HTML do that?

I am thinking that if I could do everything in XML and XSL that I could do using CSS that I might want to focus on XML and XSL because I can also do other things with XML and XSL like Web services.

But, is XML and XSL harder to use than CSS and HTML? Signifigantly
harder?

I am planning on building large content management type Web applications.
Your humble opinion is much appreciated (YHOIMA)
BTW - you should crosspost not multipost so that when we reply it goes to
all the relevant groups... anyway, here is my answer to your multiposted
question at alt.php

XSL is used to transform XML into another format. In the case of a website
you are transforming the source XML into HTML/XHTML. Whether or not you

use CSS for style and/or positioning isn't actually relevant to your choice of
XML/XSL.

The nice thing with using XSL to create HTML is that it ensures you close
all your tags (eg <br /> <input type="text" /> instead of <br> and <input
type="text">) which helps with making your pages XHTML compliant (this
alone does not make them compliant, but it helps out).

Another nice thing is it helps move the presentation layer of your
application away from the business logic, if you are wanting to create a
tiered/layered appplication solution.

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/


The not so nice things about using XSL are that it's not always very stable,
especially when the documents are large, not widely support by ISPs, and
that it's complex as hell. And when you use XML, you place an extra burden
on yourself to generate a valid document. If you forget to escape a single
ampersand, the transform engine will choke.
Jul 17 '05 #7
Chung Leong wrote:
The not so nice things about using XSL are that it's not always very
stable, especially when the documents are large, not widely support by
ISPs, and that it's complex as hell. Ah yes, I forgot to mention those points.

I've found large documents just don't work at all. I have a section on my
site with manpages formatted into HTML and I can't put the larger ones
online because the parser dies.

And if the appropriate extensions aren't compiled into PHP you won't be able
to use them. Some providers will have them but I would imagine most don't,
which limits your choice when it comes to hosting (unless you have your own
server, of course).
And when you use XML, you place an
extra burden on yourself to generate a valid document. If you forget to
escape a single ampersand, the transform engine will choke.


I don't find that a problem though, as it means something external to you is
checking to ensure you are creating valid XHTML.

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/
Jul 17 '05 #8

"Mudge" <ma******@hotmail.com> wrote in message
news:8WjIc.53806$JR4.34137@attbi_s54...
Hi,

I am a relatively new PHP programmer and I am familiar with programming
logic of web sites. I now want to get a good grasp of content and
presentation. I am trying to figure out if I should focus on XML and XSL
or CSS.

Can XML and XSL be used to show content to a browser? or can only HTML do
that?
All websites are output in HTML. To be efficient you should also use CSS.
You can generate your HTML directly from within a PHP script, or your PHP
script could generate an XML document which is then transformed into HTML by
using the contents of an XSL file.
I am thinking that if I could do everything in XML and XSL that I could do
using CSS that I might want to focus on XML and XSL because I can also do
other things with XML and XSL like Web services.
XML/XSL is not used "instead of" CSS, it is used "as well as".
But, is XML and XSL harder to use than CSS and HTML? Significantly harder?

XML and XSL are additional things to learn. XSL is actually a scripting
language is its own right with its own syntax and its own foibles. As such
it is a new language that you have to learn.

There are plenty of resources on the web which give information and/or
tutorials concerning XML and XSL. If you visit
http://www.tonymarston.co.uk/xml-xsl/index.html you will see some articles I
have written on the subject.
I am planning on building large content management type Web applications.

Your humble opinion is much appreciated (YHOIMA)


I use XML and XSL within my PHP application to separate presentation from
business logic. My framework/infrastructure is actually a combination of the
3 tier architecture and the Model-View-Controller design pattern. If you
visit http://www.tonymarston.co.uk/php-mysql/index.html you will see some
articles I have written on the subject.

I also have a sample application which uses my framework which you can run
online. You can also download the code and run it locally if you want to see
how it works. Take a look at
http://www.tonymarston.net/php-mysql...plication.html for details.

Hope this helps.

--
Tony Marston

http://www.tonymarston.net

Jul 17 '05 #9


Can XML and XSL be used to show content to a browser? or can only HTML
do that?


All websites are output in HTML.


Are they? I thought IE6 and Moz et al supported XML/XSLT natively? I'm
sure I've seen sites using this..

I am planning on building large content management type Web
applications.

Your humble opinion is much appreciated (YHOIMA)


Personally I would get your application to write out XHTML with sufficient
use of inheritable CSS classes and DIV tags that CSS could be used to
style it in any way the administrator wishes.
Martin
Jul 17 '05 #10
Martin Lucas-Smith wrote:
Can XML and XSL be used to show content to a browser? or can only
HTML do that?


All websites are output in HTML.


Are they? I thought IE6 and Moz et al supported XML/XSLT natively? I'm
sure I've seen sites using this..


What Tony meant is that what browsers receive is HTML; even if you send the
XML from the server and accompany it by XSL for the browser to transform it,
XSLT still transforms it into HTML before displaying it.

However, it doesn't have to be so. It is quite possible to serve a page as
pure XML and use CSS to give it appearance; actually, this is as XML was
originally intended, to replace HTML completely. As we know, that didn't
happen, but still the basic difference between XHTML and pure XML is that
browsers have defined default appearance for most XHTML elements.

As it comes to XSLT, it is designed to convert XML into any kind of
text-based output, so you can get another XML, XHTML, HTML, CSV or simple
plain text from your XML.

I guess that the OP is trying to decide what to use, client-side, to give
appearance to his content, outputted as XML. As someone else in the thread
mentioned, letting the client do the job is not really a good idea, as the
browser support for any of the above technologies is still far from ideal.

Probably the best approach is to create content as XML and then convert it
by XSLT, server-side, into HTML, possibly setting the appearance by CSS. The
downside of this approach might be (for someone) that you might need to know
a whole bunch of languages: PHP for server-side processing, HTML/HTML and
CSS for browser display, SQL for working with the database, XSLT and XPath
for working with XML and even Javascript for possible client-side
processing. (I didn't mention XML because there isn't really that much to
learn about it, being a meta-language; however, one would still be quite
familiar with XML vocabilaries used in the application, which might involve
learning DTD or XSchema.)

For good tutorials on most of the above technologies, see
http://www.w3schools.com

Berislav

--
If the Internet is a Marx Brothers movie, and Web, e-mail, and IRC are
Groucho, Chico, and Harpo, then Usenet is Zeppo.
Jul 17 '05 #11

"Martin Lucas-Smith" <mv***@cam.ac.uk> wrote in message
news:Pi******************************@hermes-1.csi.cam.ac.uk...


Can XML and XSL be used to show content to a browser? or can only HTML
do that?


All websites are output in HTML.


Are they? I thought IE6 and Moz et al supported XML/XSLT natively? I'm
sure I've seen sites using this..


A website may contain nothing but XML documents, but these are actually
transformed into (X)HTML within the client browser. If you use the "View
Source" option you will see a reference to both an XML and an XSL file. The
disadvantage of performing the XSL transformation within the client browser
is that it relies on the fact that the client machine contains the relevant
software. The advantage of server-side transformations is you only need the
software on te server, which is under your control. Once the server has
transformed the XML into (X)HTML and sent it over the internet to the client
device all that it knos is that it is receiving an (X)HTML document - it
hasn't the foggiest idea of how it was created.

Client-side transformations cannot be done with browsers which do not
support this option, which is why it is not a good idea to use this option
on internet sites which may be accessed by users with non-XSL capable
browsers. Even with IE the transformation engine has been updated several
times, so if a site has been built to use the latest version and the client
does not have that version then the results cannot be guaranteed.
I am planning on building large content management type Web
applications.

Your humble opinion is much appreciated (YHOIMA)


Personally I would get your application to write out XHTML with sufficient
use of inheritable CSS classes and DIV tags that CSS could be used to
style it in any way the administrator wishes.


Good advice. By putting all style into a CSS document it makes it much
easier to change the style of a whole website by changing a single CSS
document.

--
Tony Marston

http://www.tonymarston.net
Jul 17 '05 #12
On Mon, 12 Jul 2004 16:44:51 +1200, Chris Hope wrote:
A lot of your decision really comes down to how much you want to have to
learn. If you choose XML & XSL to do the presentation layer then you're
going to have to learn XSL as well as PHP. An excellent XSL reference book
(if you decide to learn it) is http://tinyurl.com/36jq9

Same book at BookPool.com is only $17.25 (compared to Amazon's $23.79):

http://www.bookpool.com/.x/abm88doyq0/sm/0764543814
I just like to mention BookPool when others suggest reference material.
For me they've always been cheaper and very reliable.
Jul 17 '05 #13
Benny Hill wrote:
I just like to mention BookPool when others suggest reference material.
For me they've always been cheaper and very reliable.


That's great. Thanks for that. Will check them out when I need to buy new
books.

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/
Jul 17 '05 #14

"Chris Hope" <bl*******@electrictoolbox.com> wrote in message
news:10*************@216.128.74.129...
It depends how you code your PHP. But generally when people code the HTML
output in the PHP you often end up with a lot of HTML and PHP being mixed
up together with database calls in the middle of the HTML output. There's
not necessarily anything wrong with this (and I've done it plenty of times
in the past) but it is nice to separate that stuff from the output. Using
XML/XSL enforces the separation.


Well, if you look at it from the another prospective, a technology that
forces you to do things in a certain way takes away flexibility.

It's worth remember that while it's nice to separate logic from
presentation, that in itself is not the goal, or even a goal. The objective
of programming is to create software that does something useful. An obvious
truth but a surprisingly large number of those in our field seem not to
understand it. A lot of beginners, espeically, suffer from what I call the
"CS syndrome." They just sit around trying to come up with code that
demostrates a particular technique, technology, or principle--precisely the
kind of code that you find in programming books.
--
Obey the Clown - http://www.conradish.net/bobo/
Jul 17 '05 #15

"Chung Leong" <ch***********@hotmail.com> wrote in message
news:sN********************@comcast.com...

"Chris Hope" <bl*******@electrictoolbox.com> wrote in message
news:10*************@216.128.74.129...
It depends how you code your PHP. But generally when people code the HTML
output in the PHP you often end up with a lot of HTML and PHP being mixed
up together with database calls in the middle of the HTML output. There's
not necessarily anything wrong with this (and I've done it plenty of timesin the past) but it is nice to separate that stuff from the output. Using
XML/XSL enforces the separation.
Well, if you look at it from the another prospective, a technology that
forces you to do things in a certain way takes away flexibility.


That is true, but there are supposed to be trade-offs. In order to provide a
RAD (Rapid Application Development) environment you need to make as much use
of reusable code as possible. This gives you speed of development as you
don't have to rewrite the same code each time. The trade-off is that when
you use a resuable module you are stuck with what that reusable module does
or the way that it does it. If you want to do something different to have to
write a new module. So there is a trade-off between reusability and
flexibility. The trick is to provide modules that combine both, but not many
programmers can do that.
It's worth remember that while it's nice to separate logic from
presentation, that in itself is not the goal, or even a goal. The objective of programming is to create software that does something useful. An obvious truth but a surprisingly large number of those in our field seem not to
understand it. A lot of beginners, espeically, suffer from what I call the
"CS syndrome." They just sit around trying to come up with code that
demostrates a particular technique, technology, or principle--precisely the kind of code that you find in programming books.


How true. What is even worse is that some senior programmers follow a
technique or paradigm with almost religious zeal. They think that their way
of doing it is "the only true way" and that anyone who attempts to adopt an
alternative method is a heretic. Their approach is dogmatic (follow the
rules and damn the result) whereas mine is pragmatic (achieve a result
regardless of the rules).

--
Tony Marston

http://www.tonymarston.net

Jul 17 '05 #16
"Tony Marston" <to**@NOSPAM.demon.co.uk> wrote in message
news:cd*******************@news.demon.co.uk...
That is true, but there are supposed to be trade-offs. In order to provide a RAD (Rapid Application Development) environment you need to make as much use of reusable code as possible. This gives you speed of development as you
don't have to rewrite the same code each time. The trade-off is that when
you use a resuable module you are stuck with what that reusable module does or the way that it does it. If you want to do something different to have to write a new module. So there is a trade-off between reusability and
flexibility. The trick is to provide modules that combine both, but not many programmers can do that.
Reusability is great of course. What people consistently fail to understand
is that it takes considerable effort to make code reusable. That includes
testing and documentation. I simply love the application framework in
Delphi, for example. And even some of Microsoft's stuff impresses me
sometimes. In these instances the companies made serious investment into
creating APIs that are programmer-friendly. That was the focus of the
designers/programmers. The notion that some alone programmer, while coding
some website, can somehow come up high-quality reusable code is unrealistic
and contrary to my own experience
How true. What is even worse is that some senior programmers follow a
technique or paradigm with almost religious zeal. They think that their way of doing it is "the only true way" and that anyone who attempts to adopt an alternative method is a heretic. Their approach is dogmatic (follow the
rules and damn the result) whereas mine is pragmatic (achieve a result
regardless of the rules).


Form follows function. The end ususally suggests the means. The trick is to
know what you're trying to accomplish and not lose focus on that. Far too
many programmers develope in a backward manner, coming up with the solution
before they know what the requirements are. Not unlike the actions of a
certain head of state: "we have to invade Iraq! Why? Because invading Iraq
is the thing to do."
Jul 17 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.