I am having kind of stupid problem:P
<?php
echo $url; // In my php files $url contain multiple values
?>
This works fine
The different values of url get displays properly
For e.g
http://www.google.com
http://www.daniweb.com
That's perfect
Now when i tried to echo the variable in some html
<?php
$url = something; // In my php files $url contain multiple values
?>
<html>
<td><input type="text" size="50" value="<?php echo $url?>"/></td>
</html>
ONLY the first occurence of the variable url get displayed(i.e http://www.google.com)
HOW to make it display all values of $url in HTML
HTML need to be like this
<html>
<td><input type="text" size="50" value="<?php echo $url(first occurence)?>"/></td>
</html>
<html>
<td><input type="text" size="50" value="<?php echo $url(seconds occurence)?>"/></td>
</html>
Hope i will get this done soon
Thanks