algorithm Posted February 6, 2010 Share Posted February 6, 2010 I was wondering if it was possible to split a php file so one part would start off, then it would call a second php file, and then go back to the original file to finish processing. I want to do this because there are certain sections of my phps that are repeated many times across files, it would be easier just to call one file instead of typing it all through. Link to comment https://forums.phpfreaks.com/topic/191111-splitting-a-php-file/ Share on other sites More sharing options...
premiso Posted February 6, 2010 Share Posted February 6, 2010 It is called include's. Link to comment https://forums.phpfreaks.com/topic/191111-splitting-a-php-file/#findComment-1007709 Share on other sites More sharing options...
JAY6390 Posted February 6, 2010 Share Posted February 6, 2010 Yep, includes and create a function for any code that you re-use. if it's the same code snippet again and again you want to make it a function in a separate file and include that at the top of your script, then run the function every time you want the code executed Link to comment https://forums.phpfreaks.com/topic/191111-splitting-a-php-file/#findComment-1007712 Share on other sites More sharing options...
algorithm Posted February 6, 2010 Author Share Posted February 6, 2010 sweet, thanks! Link to comment https://forums.phpfreaks.com/topic/191111-splitting-a-php-file/#findComment-1007752 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.