Recent content by potatomelon

  1. P

    How do I put a variable into a target file name in PHP?

    I want to put a particular array value into the name of the .swf file that I want to run. For example, if $P1P["P1PID"] = 1, then I want the .swf to play that is called attackbackground1.swf Or, if $P1P["P1PID"] = 2, then I want the .swf to play that is called attackbackground2.swf This is the...
  2. P

    How do I transfer arrays across several PHP pages?

    I have declared an array on one page of my PHP, part of which is shown below: $P1P["P1PID"]=mysql_result($result,0,"ID"); $P1P["P1PATTACK"]=mysql_result($result,0,"ATTACK"); Now, I want to transer these array values to another PHP page. What do I do? Do I have to create a form?
  3. P

    How do I run Flash animations on certain events in my PHP code on an HTML page?

    What code do I require in order to run different flash animations at particular points in my program, dependent on either user-driven events or other events. I am using PHP on a HTML page.
Back
Top