Toysoldier
Grünschnabel
Hallo,
ich bin noch recht neu in PHP und habe eine Frage.
In meiner Mysql Datenbank sind die Piloten angegeben. z.B pilot_id=100 usw.
Nun möchte ich für die Homepage einer Airline die Piloten zusammen zählen.
Das heißt pilot_id=100 bis z.B 150 sind dann 50 Piloten etc.
Wäre echt toll wenn ihr mir helfen würdet... meine connect_db.php:
Meine Zeile die nicht funktioniert da:
Parse error: parse error, unexpected T_STRING in /var/www/vhosts/alex.german-lloyd.com/httpdocs/index.php on line 80
Wie gesagt bin noch ein
ich bin noch recht neu in PHP und habe eine Frage.
In meiner Mysql Datenbank sind die Piloten angegeben. z.B pilot_id=100 usw.
Nun möchte ich für die Homepage einer Airline die Piloten zusammen zählen.
Das heißt pilot_id=100 bis z.B 150 sind dann 50 Piloten etc.
Wäre echt toll wenn ihr mir helfen würdet... meine connect_db.php:
PHP:
<?php
/* CHANGE THIS ACCORDING TO YOUR CONFIGURATION */
$hostName = "localhost";
$userName = "flightk";
$password = "**********";
$dbName = "flkeeper";
/* make connection to database */
mysql_connect($hostName, $userName, $password) or die("Unable to connect to host $hostName");
mysql_select_db($dbName) or die("Unable to select database $dbName");
?>
Parse error: parse error, unexpected T_STRING in /var/www/vhosts/alex.german-lloyd.com/httpdocs/index.php on line 80
PHP:
<?php
include("connect_db.php");
UPDATE pilots SET pilot_id = pilot_id +1 WHERE pilot_id = 123 ?>