ok well i got a problem with the paging i do, i added all my pages to one file, and just made links go default.php?page=default
and i put in a "include file.php" and put in all my pages in there...
now my problem is, im sick of getting rid of the quotations, cuz WHAT I do is: echo "<--myhtml-->"; but i have to replace all the ", with ' or /" so they wont override my echo...
thus,,, pretend:
if ($page== "default") {
echo"<a href="order.php">order now!</a>";
}
now i want to do this cuz i dont want to change " manually... so...
if ($page == "default") {
$that = "<a href="order.php">order now!</a>";
ereg_replace(""", "", $that);
}
seee, how can i replace double-quotes to make it nothing, so i wanna get rid of double quotes, how do i do this? it dont work...
Thanks