login  Naam:   Wachtwoord: 
Registreer je!
 Forum

ID overnemen in nieuwe pagina

Offline Appie_Dijk - 24/09/2005 19:21
Avatar van Appie_DijkLid hallo iedereen ik ben bezig met een script, het script ziet er zo uit:

  1. <?php
  2. include("../../fckeditor.php") ;
  3. include("../../../config.php");
  4. $id = $_GET['id'];
  5. $select = mysql_query(" SELECT * FROM tekst WHERE id='". $id ."'");
  6. $obj = mysql_fetch_object($select);
  7. ?>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  9. <html>
  10. <head>
  11. <title>FCKeditor - Sample</title>
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <meta name="robots" content="noindex, nofollow">
  14. <link href="../sample.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
  17. <form action="post.php?id=<?php $id ?>" method="post">
  18. <?php
  19. // Automatically calculates the editor base path based on the _samples directory.
  20. // This is usefull only for these samples. A real application should use something like this:
  21. // $oFCKeditor->BasePath = '/FCKeditor/' ; // '/FCKeditor/' is the default value.
  22. $sBasePath = $_SERVER['PHP_SELF'] ;
  23. $sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
  24.  
  25. $oFCKeditor = new FCKeditor('FCKeditor1') ;
  26. $oFCKeditor->BasePath = $sBasePath ;
  27. $oFCKeditor->Value = $obj->tekst ;
  28. $oFCKeditor->Create() ;
  29. ?>
  30. </form>
  31. </body>
  32. </html>


en ik weet dat ik dit fout is:

  1. <form action="post.php?id=<?php $id ?>" method="post">


ik krijg namelijk bij post:

http://www.mijndomein.nl/post.php?id=

hoe kan ik de id wel overnemen?
dus als bij editor.php id=1 is dat er dan komt te staan:

http://www.mijndomein.nl/post.php?id=1

3 antwoorden

Gesponsorde links
Offline Rens - 24/09/2005 19:36
Avatar van Rens Gouden medaille

Crew algemeen
<?=$id;?>

De <?= staat voor <?PHP echo.
Het is alleen een kortere notatie.
Offline jarro - 24/09/2005 21:26
Avatar van jarro HTML interesse <form action='post.php?id=<? ".$_GET['id']." ?>' method='post'>
of
<form action="<? $_SERVER['PHP_SELF'] ?>" method="post">

Ik zou die laatste aanbevelen, die is sneller in deze context
Offline Ontani - 24/09/2005 22:47
Avatar van Ontani Gouden medailleGouden medailleGouden medailleGouden medaille

-1
je vergeet je echo, jarro
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2025 Sitemasters.be - Regels - Laadtijd: 0.22s