Category: PHP
-
Updated 2017 PHP code to automatically bid/buy an eBay auction item
Updated code to automatically bid on an eBay item, I’m currently using it myself if a loop of searched items. Most of the changes are the query strings which is a lot more involved now. For testing use one cent items with free shipping.
-
CloudSight API PHP example
Here is an example PHP function for the CloudSight API, given there are not many examples online. Simply input your API key and the url which could be either a local or internet file, the function will return the string description of the image.
-
Automatically reboot a TP-LINK TD-W8960N Modem through PHP script
I recently got a bit fed up of the ADSL2+ speeds I was getting and constant line resyncing. I thought I would set up a script to automatically reboot the modem when sleeping. It turns out that previously it was very simply to reboot TP-LINK modems, but it has got a lot more difficult recently.…
-
PHP code/script to automatically purchase a Buy it Now (BIN) eBay item
Similar to my previous eBay bidding script, here is PHP code to automatically purchase a BIN item. Note the script fails if immediate PayPal payment is required. Payment still needs to be performed manually. Function takes item number only, so be careful with it. Misc functions below;
-
Updated PHP code to automatically bid/buy an eBay auction item
This code is now obsolete and has been updated again. Updated code to automatically bid on an eBay item, I’m currently using it myself if a loop of searched items. Most of the changes are improved return status checking. For testing use one cent items with free shipping.
-
Login and scrape NAB page with PHP and CURL
I was after an automated way to determine if payments had come into my nab.com.au account. For some reason, nab makes it very difficult to login with PHP and CURL. The main issue is they perform some client side password encoding with JavaScript. Here is the code below; Thanks for this page for pointing me…