Shoutbox verbergen na post

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Senior, Medior and Junior SAP HANA Developer

Vacature details Vakgebied: Software/IT Opleiding: Medior Werklocatie: Veldhoven Vacature ID: 12696 Introductie Our client is the world's leading provider of lithography systems for the semiconductor industry, manufacturing complex machines that are critical to the production of integrated circuits or chips. Our purpose is “unlocking the potential of people and society by pushing technology to new limits”. We do this guided by the principles “Challenge”, “Collaborate” and “Care”. Wat verwachten we van jou? SAP Certified Application Associate - SAP HANA Cloud Modeling (training and/or certification) Bachelor degree or higher Excellent understanding of SAP HANA (2.0 / Cloud), Data Modelling and writing

Bekijk vacature »

Richard

Richard

11/02/2006 13:17:00
Quote Anchor link
Ik heb een shoutbox script die na het posten het 'tabel 1'(zie script) laat zien, met daaronder 'tabel 2'(zie script). Hoe zorg ik ervoor dat ik na het posten alleen tabel 1 zie?

Het script:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?
$maximaal
  = '5';


$mysql_host  = '****';  
$mysql_user  = '****';      
$mysql_pass  = '****';          
$mysql_db    = '****';          


mysql_connect($mysql_host,$mysql_user,$mysql_pass) or die(mysql_error());

mysql_select_db($mysql_db);



if ($_GET['functie'] == 'schrijven' && $_SERVER['REQUEST_METHOD'] == 'POST'){


    $sql ="INSERT INTO shoutbox(naam,bericht,tijd) VALUES('".$_POST['naam']."','".$_POST['bericht']."',NOW())"    ;

  mysql_query($sql) or die(mysql_error());

      echo'tabel 1';
}



if ($_GET['lijst'] == 'alle'){

$lijst_sql = "SELECT * FROM shoutbox ORDER BY tijd DESC".$maximaal;


}
else{


$lijst_sql = "SELECT * FROM shoutbox ORDER BY tijd DESC LIMIT ".$maximaal;


}



$query = @mysql_query($lijst_sql) or die(mysql_error());

echo'
      Tabel 2

'
;
?>
 
Er zijn nog geen reacties op dit bericht.



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.