I have db with column named "link" Links have redirect urls, which I want to change. I have php script, which would take the link and gives me out put as follows
$redo = get_redirect('htp://www.mydomain.com/long/url/here&ID=123');
print_r($rez);
Bu çıkış:
Array
(
[0] => htp://www.otherdomain.com
)
how do I loop all items in my database, and run this script for each item. my db is called "apps" and table is called "items" and column containing urls is called "link" above php script is called getredirect.php
Ben komut dosyası çalıştırdığınızda Ayrıca ben "& ID = 123 & otherstuff = ne olursa olsun" olmadan çalıştırmak için gereken
(htp supposed to be http... I can't add links per board rules) Thanks