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
|
<?php
$mot_cle=$_POST["mot_cle"];
if ($mot_cle=='developpement') {
$mavariable= "Cliquez sur <a href='http://marocemploi.net/offre/ingenieur_fonctionnel_hf' target=_blank>ce lien</a>";
$lines = file('http://marocemploi.net/offre?offreemploi=d%C3%A9veloppement&cat=858&villeemploi=All');//charger le site
foreach ($lines as $line_num => $line) {
$pos = strpos ($line,'<div class="joblist_title">');//cherche les titres
if ($pos == true) {
$aTab [] = ($line.$mavariable) ;
}
}
echo '<pre>';
print_r($aTab);///affiche tableau
}
else {
echo("comptable");
}
?> |
Partager