Jump to content

smiles

Members
  • Posts

    774
  • Joined

  • Last visited

Everything posted by smiles

  1. smiles

    anyone know ...

    That's so simple, thanks friends
  2. Hi I have just had a problem, show in my code <?php include("giup.php"); $result1 = $_POST["theName"];echo $result1; // I see the result, for example 'a'$result2 = mysql_query("SELECT Infor FROM PersonWHERE Name='$result1' "); // Person with Name 'a' has the Info is 'boy'echo $result2; // now don't see the result 'boy'?> How can I make it run ?
  3. I found it A commamysql_select_db("my_database", $connect);$sql = "CREATE TABLE Person(Name varchar(15),Infor varchar(15), // it's here)";mysql_query($sql,$connect);
  4. smiles

    anyone know ...

    http://www.radiologyworkers.com I have an important topic waiting for their answer and what kind of this link mms://..................
  5. Just to try to create a database name my_database and create a table but ... database created, table isn't created ??? <html><body><?php$connect = mysql_connect("localhost","root","");if (!$connect) { die('Could not connect:'.mysql_error()); }if (mysql_query("CREATE DATABASE my_database",$connect)) { echo "Database created"; }else { echo "Error :".mysql_error(); };mysql_select_db("my_database", $connect);$sql = "CREATE TABLE Person(Name varchar(15),Infor varchar(15),)";mysql_query($sql,$connect);// Suppose insert some infomysql_query("INSERT INTO Person (Name,Infor) VALUE ('a','boy')");mysql_query("INSERT INTO Person (Name,Infor) VALUE ('b','girl')");// We get// ------------------// | Name | Infor |// | a | boy |// | b | girl |// ------------------// a,b live in drop down list $result = mysql_query("SELECT Name FROM Person");echo "<form>";echo "<select name='theName'>";while ($theArray = mysql_fetch_array($result)) { echo "<option value=' ".$theArray['Name']." '>".$theArray['Name']."</option>"; }echo "</select>";echo "</form>";?><hr/></body></html>
  6. I am doing with Xampp and could you help me with these questionwhat is MyISAM Type and beside text, can we put insert image into database ?
  7. .flv is the succesful file in anti-download field :)so .flv -> .mpeg is hard work
  8. delete image.gif and put another image into the folder contain the previous image and rename it as image.gifhope I understand you right ???
  9. <head>here</head><body>or here</body>or even here(Javascript)
  10. yeah, tell her that you are making a website and suggest her for ideas to make it looks betterShe will help you surely
  11. I like Firefox but seems that it doesn't like to remind me that it had a new cloth
  12. :)excellent protection !!!
  13. About the second, maybe like this pass_by = getTimer();if (pass_by == 3000){ your_textField.text = "Hello World";}
  14. respostaXML = new XML;respostaXML.ignoreWhite = true;respostaXML.onLoad = function responde() { resposta=respostaXML.firstChild.childNodes[0].nodeValue; trace("it's here"); _parent.resp.text = resposta;};respostaXML.load("http://cgseguros/newsletter.php?&nome="+_parent.your_name+"&mail="+_parent.your_email);
  15. smiles

    Form page

    your html_form_action.asp file may contains : <body>Welcome<%response.write(request.querystring("user"))%></body> source : http://www.w3schools.com/asp/asp_inputforms.asp
  16. 18 pages for discussing, it 's hard for me to read ... so maybe you have many reasons about why Web pages look different with browser If yes, tell me shortly about them thanks !!!
  17. not see also with Firefox, you could see it ???
  18. smiles

    Flash Tutorial

    why mistake ???which web page not begin with HTML ???no trees, no fruits
  19. I think people are here not only for helps or receive helps but also for making friendmaybe we should think again about Off Topic
  20. I always believe you will success Have a nice day !!! ... now I have to pick up the New Year 's Day of my country
  21. Try to upload this file for youhttp://uploadhut.com/download/image.php/?file=381959.zip you will see inside it is 3 files : try.fla, aotrang.swf,try.swftry.swf using a loader component ( Windows>>Components>>You find Loader and drag into stage)notice the parameters that I set for loader (see in try.fla)I never put a loader component into a movie clip you can try it for yourself
  22. you scale it successful ?if your movie is rectangle, you put it in square, certainly it is distortedinspite of anything, you must have the suitable rate about height and width between loader and external moviehope I understand you right
  23. try this /* add more */my_loader.scaleContent = true;
  24. smiles

    AVG

    It has Anti Virus and Anti Spyware, I use free version, I read that free version has some features limitted compared with paid version, what are these feature ???and what Antivirus and AntiSpyware are you using ? Could you give me some advices for choice ?and do we need other Anti-something in addition ? thanks
×
×
  • Create New...