I am writing a php file in which I want three blocks of code to be executed one by one. I want code 1 to be executed first and then code 2 and finally code 3. How can it be done?
<?php
code 1....
?>
<scirpt>
code 2...
</script>
<?php
code 3...
?>
I am writing a php file in which I want three blocks of code to be executed one by one. I want code 1 to be executed first and then code 2 and finally code 3. How can it be done?
<?php
code 1....
?>
<scirpt>
code 2...
</script>
<?php
code 3...
?>