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. Quote 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. Quote 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 Quote 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! Quote Link to comment https://forums.phpfreaks.com/topic/191111-splitting-a-php-file/#findComment-1007752 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.