Topic: how do i format a hyper link inside
how do i format a hyper link inside of a echo statement?
example:
<?php
echo " http://punbb.org";
?>
Q
Don't be stupid and help ! We are the stupid one's !!!
You are not logged in. Please login or register.
PunBB Forums → Programming → how do i format a hyper link inside
how do i format a hyper link inside of a echo statement?
example:
<?php
echo " http://punbb.org";
?>
Q
try this:
echo '<a href="url">Text to be displayed</a>';
im not trying to do a hyper link.
im working on a php file that export information to a xml.
$xmlString="<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <playlist>
<trackList>";
i used this.
this was the hyperlink that i needed to export from php to the xml
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
Enclose it within single quotes and you don't need to escape the double quotes, i.e:
$xmlString = '<?xml version="1.0" encoding="UTF-8"?>'."\n".'<playlist><trackList>';
thanks... im working on a flash gallery but i want the php file to export the xml
Q
PunBB Forums → Programming → how do i format a hyper link inside
Powered by PunBB, supported by Informer Technologies, Inc.