Jump to content

[SOLVED] Putting html google code in php, inside if-then statement


9999

Recommended Posts

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

?>

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

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.