
mithu_sree
Members-
Posts
34 -
Joined
-
Last visited
Never
Everything posted by mithu_sree
-
I'm trying to parse RSS files. I just want to know is there a function like javascript innerHTML() in PHP [code] $titles = $dom->getElementsByTagName('title'); foreach ($titles as $title) { echo $title->.......'<br>'; // I want to get the contents inside <title> tags } [/code]
-
[code] <?php $file="http://www.URL.com/file.XML"; $xml_parser = xml_parser_create(); $handle = fopen($file, "rb"); $contents = ''; while (!feof($handle)) { $data .= fread($handle, 8192); } fclose($handle); xml_parse_into_struct($xml_parser, $data, $vals, $index); xml_parser_free($xml_parser); $params = array(); $level = array(); foreach ($vals as $xml_elem) { if ($xml_elem['type'] == 'open') { if (array_key_exists('attributes',$xml_elem)) { list($level[$xml_elem['level']],$extra) = array_values($xml_elem['attributes']); } else { $level[$xml_elem['level']] = $xml_elem['tag']; } } if ($xml_elem['type'] == 'complete') { $start_level = 1; $php_stmt = '$params'; while($start_level < $xml_elem['level']) { $php_stmt .= '[$level['.$start_level.']]'; $start_level++; } $php_stmt .= '[$xml_elem[\'tag\']] = $xml_elem[\'value\'];'; eval($php_stmt); } } echo "<pre>"; print_r ($params); echo "</pre>"; ?> [/code] This code is from http://www.php.net/manual/en/function.xml-parse-into-struct.php let this one be the input <?xml version="1.0"?> <moldb> <molecule> <name>Alanine</name> <symbol>ala</symbol> <code>A</code> <type>hydrophobic</type> </molecule> <molecule> <name>Lysine</name> <symbol>lys</symbol> <code>K</code> <type>charged</type> </molecule> </moldb> The parser not parsing the second <molecule> tag. What should I do to work the code correctly?
-
[code] <?php function parse_xml_file(){ global $xml_file, $vals, $index; $xml_parser = xml_parser_create(); if (!($fp = fopen($xml_file, "r"))) { die("could not open XML input"); } $data = fread($fp, filesize($xml_file)); fclose($fp); $xml_parser = xml_parser_create(); xml_parse_into_struct($xml_parser, $data, $vals, $index); xml_parser_free($xml_parser); } ?> [/code] the inpur xml file contains <?xml ..?> <tagA> <t1> ... </t1> <t2> .... </t2> </tagA> <tagB> <t3>.... </t3> </tagB> And The parser stoped after </tagA> What shoud I do to entair tags get parsed?
-
any idea doing this with CSS?
-
[SOLVED] The hyperlinked images have blue frame around them...
mithu_sree replied to ted_chou12's topic in HTML Help
Use border attribute [code] <a href="somepage.html"> <img src="MyImage.png" border="0"> </a> [/code] -
How can I change the color and background of the title attribute of the <a> tag and <img> tag? <a href="somepage.html" title="Go there!!"> click me </a>
-
[quote author=mrkamran link=topic=117997.msg481827#msg481827 date=1165695809] Hi, I have a Combobox in my php file and there is another combobox which will fill based on first combobox. For example First ComboBox has Main Category and Second ComboBox has Sub Category, When i will select an option from main category then sub category will fill on the base of main category. I want to do this without submitting the form. Thanks [/quote] Yes This is possible with the JavaScript combined with PHP
-
tried this one? http://localhost/phpmyadmin/
-
KDE KDE clean N bug free
-
Thanks very much I need to know a little about why $i <= 'Z' not works?
-
I think you have to make every entry in text input boxes on page load use javascript to disable every text boxes on click [b]Edit[/b] buitton enable all text boxes
-
I have some code like this for displayng an A-Z anchor table [code] function make_anchors_index() { echo "<table class=\"anchor\"> <tr>"; for($i = 'A'; $i < 'Z'; $i++) echo "<td><a href=\"#".$i."\">".$i."|</a></td>"; echo "<td><a href=\"#".$i."\">".$i."</a></td>"; echo "</tr></table><br />"; } [/code] This one produces a list of A-Z anchors and when i mordified this to [code] function make_anchors_index() { echo "<table class=\"anchor\"> <tr>"; for($i = 'A'; $i <= 'Z'; $i++) echo "<td><a href=\"#".$i."\">".$i."|</a></td>"; echo "</tr></table><br />"; } [/code] produces A|B|C....Y|Z|AA|AB|AC... Why is this? How can i display A|B|..Z list using only one echo "<td><a href=\"#".$i."\">".$i."|</a></td>"; statment mordifying only the for loop codition??
-
Are you trying for some thing like this? [code] for($i = 'A'; $i < 'Z'; $i++) echo "<a href=\"#".$i."\">".$i."|</a>"; echo "<a href=\"#".$i."\">".$i."</a>"; [/code]
-
above should work u can try this one also on submit="function1()" and inside [code] function1() { function2(); function3() } [/code]
-
i will try for it :-X
-
Which PHP-Editor do you think is the best?
mithu_sree replied to briananderson's topic in Miscellaneous
i use Notepad++ -
How will u open ur file? Do u think Javascript supports file handling?
-
[ resolved ] Help me out.....................
mithu_sree replied to prasanna_php's topic in PHP Coding Help
how will i know page loading completed? -
Which PHP-Editor do you think is the best?
mithu_sree replied to briananderson's topic in Miscellaneous
I like Notepad++ in Windows -
Me Mithun, 21, Male India/Kerala/Kannur I started programming BASIC when I was 12 and I now 21 working as a Software Engineer I have been working with C, C++, Java/JEE, PHP, MySQL, XHTML, CSS, JavaScript, Linux Kernel programming.. I started coding PHP only a couple of months before.
-
Thanks alot Is it possible to convert doc to pdf from the client side itself?
-
not possible!!
-
i think must be done in a javascript way