I'm trying to embed the CGI into my php file. I've read this http://www.wrensoft.com/zoom/support...i.html#ssi_cgi
But am still having problems. I'm not positive where I'm supposed to insert the suggested code so I tried it like this below. I also I'm not certain of the correct path. To reach the search.cgi it is currently located at http://mydomain/alpha/search.cgi. Is this correct?
<form <?php
$QSTRING = $_SERVER['QUERY_STRING'];
virtual("/alpha/search.cgi".'?'.$QSTRING);
?> <p align="center"><input name="zoom_query">
<input type="submit"
value="Search"></p>
</form>
Thanks in advance for your help.
But am still having problems. I'm not positive where I'm supposed to insert the suggested code so I tried it like this below. I also I'm not certain of the correct path. To reach the search.cgi it is currently located at http://mydomain/alpha/search.cgi. Is this correct?
<form <?php
$QSTRING = $_SERVER['QUERY_STRING'];
virtual("/alpha/search.cgi".'?'.$QSTRING);
?> <p align="center"><input name="zoom_query">
<input type="submit"
value="Search"></p>
</form>
Thanks in advance for your help.
Comment