I'm new to php- and I have run into a problem that is REALLY pissing me off. I have a weblog, and rather than type in a new paragraph and upload it to the server everytime, I want to simply change it dynamically through a html form- using a php script.
I type in the words, and hit submit- that passes the variable 'talk' to a php file called store.php which simply echos the variable. That seems to work fine. I check the source of score.php and it has only my text, and some formatting html tags.
Now the problem: I want to include this text in main.php- my front page for my weblog. I use the include statement- and it pulls whatever html tags I have in the script (store.php) that holds my text but it NEVER prints out the all important variable ('talk')! I have tried every possible way to get this to work. Does anyone have any suggestions?!
thanks