BladeMetal Posted April 21, 2006 Share Posted April 21, 2006 Due to my website containing both images and text, I was forced to implement JPGraph using <img src="myscript.php"> However, my only issue is that I can't send values to it. The graph shows the average age of a football team over time and dynamically updates using a MySQL database. However, the graph is to used for many different football teams and I thought I could just use: [code]mysql_query("SELECT * FROM graph_data WHERE team_id=$team_id"); [/code]Because my script is external, is there anyway to get the $team_id variable from index.php into the external script (myscript.php)? If it can, then all my issues will be solved. Thanks in advance. -Adam Quote Link to comment Share on other sites More sharing options...
Doqrs Posted April 21, 2006 Share Posted April 21, 2006 you can: 1. set the variable into a global cookie or session2. probably a little easier, use include("filename.php") //replace filename with whatever file has the variable you want and it will inherit the variable value/name Quote Link to comment Share on other sites More sharing options...
BladeMetal Posted April 21, 2006 Author Share Posted April 21, 2006 include won't work, it just generates an image not found symbol (the red x symbol). Also, sessions didn't work either. I tested with sessions while using include() and it found the variable and printed it for me(obviously, because it was also is the right scope, namely integrated to index.php). However, it doesn't seem to recognise it in a straight <img> tag. Trying cookies now.ok, it worked with cookies. Thanks for your help. Quote Link to comment 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.