pm_buddy.php

een pagina waarin je voor pm_new.php een buddy kunt selecteren

de code:

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
<?php
//maak verbinding met db
include ("dbconnect.php");
?>

<html>
<head>
<title>Pm systeem</title>
</head>
<body>
<table width="100%">
<tr>
<th>
Selecteer een vriend
</th>
</tr>
<tr>
<td align="center">
<div style="overflow-y: hidden; height: 180px;" width="90%">
<?
//maak een lijst met je vrienden
//zodat je die naam in het bericht kunt toevoegen

$get_info = mysql_query("SELECT * FROM pmoptions WHERE user = '$uuser'");
while (list($id, $user, $alert, $buddy, $block, $dwd) =
mysql_fetch_row($get_info)){
$buddys = explode("|",$buddy);
$buddys_count = count($buddys) - "1";
if ($buddys_count >= "0"){
for ($i=0;$i<$buddys_count;$i++){
echo "<font size=\"1\"><a href=\"#\" onclick=\"opener.document.send.to.value='$buddys[$i]'\">$buddys[$i]</a></font><br />";
}
}
else{}
}

?>

</div>
</td>
</tr>
</table>
</body>
</html>

« Lees de omschrijving en reacties

Inhoudsopgave

  1. Wat zit er in dit pm systeem
  2. de database tabellen
  3. dbconnect.php
  4. pm_inbox.php
  5. pm_read.php
  6. pm_head.php
  7. pm_new.php
  8. pm_option.php
  9. pm_trash.php
  10. pm_buddy.php
  11. alert.php

PHP tutorial opties

 
 

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.