Robert wrote:

I personally use print " <link
href=\"/css/continentcode/$myregion.css\" rel=\"stylesheet\" type=\"text/css\">" for things like that, no having to join the information together, the server does the work for me.

Thanks for the tip. (My errands were cancelled, so I'm still here!)


Isn't "print" a function used to make printable web pages? I'm not sure how to plug it in. Below is a snippet from my head section include:

if($includea1 == TRUE){
echo '<link href="' . $periods . 'css/' . $continentcode . '/a1.css" rel="stylesheet" type="text/css" />';
}
echo '<link href="' . $periods . 'css/' . $continentcode . '/' . $myregion . '.css" rel="stylesheet" type="text/css" />';



Would I change it to something like this?:


if($includea1 == TRUE){
echo '<link href="' . $periods . 'css/' . $continentcode . '/a1.css" rel="stylesheet" type="text/css" />';
}
"<link href=\"/css/continentcode/$myregion.css\" rel=\"stylesheet\" type=\"text/css\">"



Someone else suggested that MySQL would be a big help with a project like this. I haven't touched that yet, but I'll have to get it connected to Dreamweaver and jump in.


Thanks!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to