is there a way to call a script from another server / domain in PHP? I would think it is require or include but I am not to sure as the method to use it..thanks
slightly stupid tonight - Rayn @_@
This page of the manual gives details of using a URL in an include() statement: http://de.php.net/manual/en/function.include.php The require() function is exactly the same as the include() function in every respect except one: when include fails it gives a warning; when require fails it produces a fatal error.
Best o luck
Norm
thanks, now its starting to work again... my brain 🙂