Supplier Selection PHP Problem Programming Web Development by Motifaithed …;/thead> <?php while($row = mysql_fetch_array($result)){ include('./includes/statuscodes.php'); //additional code $rowSupplier = mysql_fetch_array(mysql_query("SELECT supplier_name FROM… Re: Supplier Selection PHP Problem Programming Web Development by LastMitch **@Motifaithed** >The problem is if you have a lot of request it will take time for you to manually select the supplier one by one, What I want to do is put a checkbox in the first page, have a select all button, and upon submitting the request, the choice is the supplier 1, does removing the function of the 2nd page to select from supplier and… ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by borobhaisab @dani I got ChatGpt to fix my Crawler that was showing error. This code that was showing error: My Buggy Code ```` <?php //START OF SCRIPT FLOW. //Preparing Crawler & Session: Initialising Variables. //Preparing $ARRAYS For Step 1: To Deal with Xml Links meant for Crawlers only. //SiteMaps Details Scraped from SiteMaps or … Re: ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by borobhaisab @reverend jim I told ChatGpt to add Time-Out. Crawler v2: ```` <?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // Preparing Crawler & Session: Initializing Variables. // Preparing $ARRAYS For Step 1: To Deal with Xml Links meant for Crawlers only. // SiteMaps Details Scraped … Re: ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by borobhaisab I told it to teach the crawler how to deal with all the Status Codes but it said it can't do that but the basics. Crawler v3: ```` <?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // Preparing Crawler & Session: Initializing Variables. // Preparing $ARRAYS For Step 1: To Deal with… Re: ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by borobhaisab @reverend jim So, which version you like ? I guess v3. Re: ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by borobhaisab @dani Would you like to add anymore status codes ? https://en.wikipedia.org/wiki/List_of_HTTP_status_codes What do you think of ChatGpt's choice of adding Status Codes it deemed important enough to include ? Have you tried ChatGpt for coding or fixing bugs ? Re: ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by borobhaisab Full ChatGpt Session is here: https://chat.openai.com/c/e148266e-337d-4f95-b76a-2b41a2b6c67a You will need to login to your ChatGpt account, I think. Re: ChatGpt Fixed My Crawler - & Derived 2 More Versions Programming Web Development by AndreRet I have followed some of the posts from around 4 weeks ago. @brobhaisab, It is quite challenging to ask which version of AI created code (be careful, it does not always return what you think it does :), I prefer my own code with maybe chatgtp etc. as a guideline) will be the best for your application needs. You are the only person that will be …