Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ccherchi

    Using Windows Media Service SDK

    Hi, I have to make a VBS script that will run once a day for maintenance needs on a Windows Media Server. This script must create an Instance of the Station Control Object before sending command to it. However, the SDK reference guide say that this instance have to be created within...
  2. ccherchi

    Sending POST request with PHP

    Hi, i have got a script that receives data with the POST method, and i would like to send them again in POST method after processing. Does someone have any solution ? Thanks, Cedric.
  3. ccherchi

    Command line output

    Hi ! I am running a PHP script via command line (WIN32 command line), and the line "Content-type: text/html" is added at the beginning of my output each and every time that the script is executed. Is there any solution to prevent this line from being automatically echoed ? Thanks a...
  4. ccherchi

    Command line output

    Hi ! I am running a PHP script via command line (WIN32 command line), and the line "Content-type: text/html" is added at the beginning of my output each and every time that the script is executed. Is there any solution to prevent this line fomr being automatically echoed ? Thanks a...
  5. ccherchi

    global variable question

    Even if you use the "global" statement, try to send your variable value thanks to a "return" : function ReadOldPriceList() { $iOldPrices = array(); ..... return $iOldPrices; } $iOldPrices = ReadOldPriceList(); Ced.
  6. ccherchi

    URL Variables and Windows XP

    Is your php.ini register_globals variable set to "On" ? It could help... Ced.
  7. ccherchi

    PHP 4.2.1 modules and Apache under XP

    This kind of module is supposed to be loaded by the PHP interpreter, so the module is called in the php.ini file. Are you sure httpd.conf could be edited to (pre)load thise mod? And how do you call it (with a basic 'Loadmodule' statement)?
  8. ccherchi

    PHP 4.2.1 modules and Apache under XP

    Allright, Thanks for your help Sascha. I'll try ti find some advices on threse newsgroups.
  9. ccherchi

    PHP 4.2.1 modules and Apache under XP

    I have tried all and all are making the error. But i am more interested to make the libcurl module work.
  10. ccherchi

    PHP 4.2.1 modules and Apache under XP

    It is Apache 1.3...
  11. ccherchi

    PHP 4.2.1 modules and Apache under XP

    Unfortunatly, yes.
  12. ccherchi

    Problem accessing a URL variable

    Is your register_argc_argv php.ini variable set to 'On'?
  13. ccherchi

    PHP 4.2.1 modules and Apache under XP

    Hi, i have a problem making my PHP modules work with my current configuration (PHP 4.2.1 and Apache under XP). When restarting my HTTP server, i still get the following error message : "can't load XXXX module. Module not found". I have read a lot of FAQ about this problem, and i...
  14. ccherchi

    REGEXP PROBLEM

    Hi, i am trying this line to retrieve the coutry from ths following source code : preg_match_all(&quot;/<select name=\&quot;coutry\&quot;.*?(<option>.*?<\/option>)+.*?<\/select>/s&quot;, $page, $result); [SOURCE CODE BEGINING ] <select name=&quot;coutry&quot;> <option>country1</option>...

Part and Inventory Search

Back
Top