sarakmo Posted April 19, 2006 Share Posted April 19, 2006 Hello:For my multimedia design final project, I've constructed a website dealing with "identity" and a fairly complex flash site reflecting my research. For the final component I wish to : 1] Have users be able to enter their own definition of identity using a form;2] Have these answers be automatically updated onto the site. I know this is possible, where should I go from here? I'm a novice at PHP, although I am a quick learner with programming. Any help is greatly appreciated.Thanks again,Sara Quote Link to comment https://forums.phpfreaks.com/topic/7812-php-required/ Share on other sites More sharing options...
poirot Posted April 19, 2006 Share Posted April 19, 2006 Hmmm.. Long way to go I guess. Use forms to submit data and store them somewhere.Very very very simplified:[code]<form method="post" action="script.php">Whats your favorite fruit? <br><input type="text" name="fruit"><input type="submit" value="Send"></form>[/code][code]<?php$fruit = $_POST['fruit'];// store $fruit somewhere?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/7812-php-required/#findComment-28470 Share on other sites More sharing options...
sarakmo Posted April 29, 2006 Author Share Posted April 29, 2006 How do I use this with flash? I'm a beginner when it comes to code....I appreciate your response! Thanks,Sara Quote Link to comment https://forums.phpfreaks.com/topic/7812-php-required/#findComment-32038 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.