Best book for RHCE exam


 
Thread Tools Search this Thread
Operating Systems Linux Best book for RHCE exam
# 1  
Old 06-09-2006
Best book for RHCE exam

i want to know some of the good books for RHCE Exam.....can anybody help..
thnx in advance Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

I need Rhce materials official

I want the pdfs of course official red hat Rhce. Thanks. (1 Reply)
Discussion started by: Ultralord
1 Replies

2. Red Hat

RHCE certification

Hi, Can any one provide me the details of RHCE certification like Course details, exam pattern, topics to study. I am planning to take up exam next month so i want to prepare for it. Thanks (1 Reply)
Discussion started by: chetansingh23
1 Replies

3. Red Hat

RHCE Materials

I'd like to get RHCE certification but I can't find the books which get me for doing such , could someone guide me where can i find the books ?:wall: (4 Replies)
Discussion started by: arm
4 Replies

4. Red Hat

Need help for RHCE certification ?

Hi , Kindly I wonder whether have any idea about the difference between RedHat & Centos operating systems ? I totally know that Centos is a derivative of Redhat but I'm talking about the similarity in terms of administration ( are the commands same?) for instance If someone had installed Centos... (2 Replies)
Discussion started by: arm
2 Replies

5. Red Hat

RHCE DUMPS

Hi All, I am planing to take RHCE exam in the month of March 2012. Could anyone provide me with the latest dumps and pattern which can help me in clearing the certification exam. Thanks (1 Reply)
Discussion started by: chetansingh23
1 Replies

6. Red Hat

rhce 6

guys I am preparing for rhce 6.Is there anyone rhce here who can give me tips to prepare for rhce.which books should i use (1 Reply)
Discussion started by: shamapraveen
1 Replies

7. Linux

RHCE tutorials

Does anyone here who is an RHCE already? Do you have tutorials for this? (0 Replies)
Discussion started by: invinzin21
0 Replies

8. UNIX for Dummies Questions & Answers

RHCE Exam Sample Papers

Hi All, Does anyone have RHCE Exam Sample or Practice Papers ?? I am planning to give it asap. Pls help. Thanks n Regards, Vikas (1 Reply)
Discussion started by: vikas027
1 Replies

9. Solaris

book for preparing exam ?

dear solaris group, whitch are the best book for study admin 1 + 2 on solaris 9 to prepare for the exam of admin 1 & 2 best regards Maurizio (2 Replies)
Discussion started by: mauric
2 Replies
Login or Register to Ask a Question
DOM_IMPORT_SIMPLEXML(3) 						 1						   DOM_IMPORT_SIMPLEXML(3)

dom_import_simplexml - Gets aDOMElementobject from aSimpleXMLElementobject

SYNOPSIS
DOMElement dom_import_simplexml (SimpleXMLElement $node) DESCRIPTION
This function takes the node $node of class SimpleXML and makes it into a DOMElement node. This new object can then be used as a native DOMElement node. PARAMETERS
o $node - The SimpleXMLElement node. RETURN VALUES
The DOMElement node added or FALSE if any errors occur. EXAMPLES
Example #1 Import SimpleXML into DOM with dom_import_simplexml(3) <?php $sxe = simplexml_load_string('<books><book><title>blah</title></book></books>'); if ($sxe === false) { echo 'Error while parsing the document'; exit; } $dom_sxe = dom_import_simplexml($sxe); if (!$dom_sxe) { echo 'Error while converting XML'; exit; } $dom = new DOMDocument('1.0'); $dom_sxe = $dom->importNode($dom_sxe, true); $dom_sxe = $dom->appendChild($dom_sxe); echo $dom->saveXML(); ?> SEE ALSO
simplexml_import_dom(3). PHP Documentation Group DOM_IMPORT_SIMPLEXML(3)