9999 Posted February 7, 2008 Share Posted February 7, 2008 How would I put a custom google search script inside this if-then statement. I need to end php, insert html google code, then restart php while inside the if-then statement. This is what I have so far: <?php // some stuff here if ($count == 0) { echo "No results were found for your search, please try the google search instead:"; <!-- Search Google --> Custom google search script code goes here <!-- Search Google --> } // some more stuff here ?> Quote Link to comment https://forums.phpfreaks.com/topic/89962-solved-putting-html-google-code-in-php-inside-if-then-statement/ Share on other sites More sharing options...
Caesar Posted February 7, 2008 Share Posted February 7, 2008 Javascript needs to be echo'd (Or printed) out just as HTML is. <?php // some stuff here if ($count == 0) { echo' No results were found for your search, please try the google search instead: <!-- Search Google --> Custom google search script code goes here <!-- Search Google -->'; } // some more stuff here ?> Quote Link to comment https://forums.phpfreaks.com/topic/89962-solved-putting-html-google-code-in-php-inside-if-then-statement/#findComment-461225 Share on other sites More sharing options...
9999 Posted February 7, 2008 Author Share Posted February 7, 2008 Thanks. I got it now. I actually had an error in another line that was causing my problem. Quote Link to comment https://forums.phpfreaks.com/topic/89962-solved-putting-html-google-code-in-php-inside-if-then-statement/#findComment-461303 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.