mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
50 lines
1.4 KiB
PHP
50 lines
1.4 KiB
PHP
|
<?
|
|||
|
#Popup mit der genauen Beschreibung eines Jobs
|
|||
|
#wird mit dem parameter "job" aufgerufen, der dem DB-Feld "l_Id" entspricht
|
|||
|
#macht Abfrage in DB und sucht zur ID passenden Job heraus
|
|||
|
|
|||
|
include("inc.db_open.php");
|
|||
|
|
|||
|
$db_connection = open_db();
|
|||
|
|
|||
|
$sql = "SELECT str_Jobtitel,str_Profil FROM Jobs WHERE l_Id=".$job;
|
|||
|
$result = mysql_query($sql, $db_connection) or die(mysql_error());
|
|||
|
$num_rows = mysql_num_rows($result);
|
|||
|
$row = mysql_fetch_array($result,MYSQL_ASSOC);
|
|||
|
?>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>Jobangebote</title>
|
|||
|
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<? if($num_rows==1) : ?>
|
|||
|
<!--Job-Titel-->
|
|||
|
<h1>Jobs bei uns</h1>
|
|||
|
<h2><? echo htmlentities($row["str_Jobtitel"]);?></h2>
|
|||
|
<!--Job-Profil-->
|
|||
|
<?
|
|||
|
$txt= htmlentities($row["str_Profil"]);
|
|||
|
#Feature, um Zeilenumbr<62>che eingeben zu k<>nnen:
|
|||
|
# #BR# wird zu <br>
|
|||
|
$txt = str_replace ("#BR#", "<br>", $txt);
|
|||
|
$txt = str_replace ("#B#", "<b>", $txt);
|
|||
|
$txt = str_replace ("#EndB#", "</b>", $txt);
|
|||
|
$txt = str_replace ("#I#", "<i>", $txt);
|
|||
|
$txt = str_replace ("#EndI#", "</i>", $txt);
|
|||
|
echo $txt;
|
|||
|
?>
|
|||
|
<br><br>
|
|||
|
Wenn wir Ihr Interesse geweckt haben, senden Sie Ihre aussagekräftigen Bewerbungsunterlagen bitte an: <br><br>
|
|||
|
|
|||
|
<br>Adresse<br>
|
|||
|
email.
|
|||
|
<p align=right><a href="javascript:close()">Fenster schließen</a> <a href="javascript:print()">Drucken</a>
|
|||
|
|
|||
|
<?else : ?>
|
|||
|
Ein Fehler ist aufgetreten. Bitte wenden Sie sich an den <a href="mailto:webmaster@test.de">Webmaster</a>.
|
|||
|
<? endif ?>
|
|||
|
</body>
|
|||
|
</html>
|