Jump to content
php.lv forumi

Satura iegūšana no XML vērtības (.html links)


senters

Recommended Posts

Izmantoju .xml failu, kura viens no info laukiem (vērtībām) ir <url> ar vērtību - links uz .html saturu.

Kā no šī linka iepostot db saturu plain tekstā. Ar attēlu būtu vienkārši, tā linku padodu <img> tega src parametrā, bet kā darīt ar html?

 

Ceru, ka ir kaut nedaudz skaidrs kas par problēmu.

Link to comment
Share on other sites

Tik tālu viss ok, vienīgi tas ko es dabūju no html ir formatēts teksts nu jā, jeb pats html. Kā dabūt vnk plaintekstu tālāk.

 

Te piemērs kā ir patreiz - http://screencast.com/t/UjV3J6Ab

 

Te izvades / pārveidošanas koda daļa:

 

 

$d = mysql_query("select UNIX_TIMESTAMP(date_start) as date_echo, event.* from event where id = '".$e."'");
while($event = mysql_fetch_assoc($d))
{
$description = file_get_contents($event['description']);
echo $description;
}

Link to comment
Share on other sites

Paldies, šis darbojas, protams nākas dažus tag'us izmantot, paturēt, lai nav totāla biezputra.

 

 

$d = mysql_query("select UNIX_TIMESTAMP(date_start) as date_echo, event.* from event where id = '".$e."'");
while($event = mysql_fetch_assoc($d))
{
// no .html linka iegūst
$description = file_get_contents($event['description']); 
// noņem tekstam tag'us (strip_tags($text, '<p><a>') - noņem visus tag'us izņemot
$description = strip_tags($description, '<p><a>'); norādītos
echo $description;
}

Edited by senters
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...