Can anyone tell me how can i execute a php script from another php script?
Thanks in advance!
Can anyone tell me how can i execute a php script from......
Moderator: General Moderators
- tecktalkcm0391
- DevNet Resident
- Posts: 1030
- Joined: Fri May 26, 2006 9:25 am
- Location: Florida
what do you mean by execute... if you have a function on another php page. and you want to run or execut that function all you need to do is include_once(); and then just have it call for that function.
if the page only has php, and you want that php to run on another page just use include(); and it will include, and run the php.
if the page only has php, and you want that php to run on another page just use include(); and it will include, and run the php.