Apr 12 2007

PopUp choice box

Tag: JavaScriptberrisch @ 3:12 pm


Check = confirm(’Will you?\n’);
if (Check == true) {
start_it();
}


Apr 12 2007

MySql result to table (with header)

Tag: Phpberrisch @ 1:04 pm
echo '<table>';
$request = "SELECT id, title, name, adr, ulf FROM truc";
$result  = mysql_query($request);
echo '<tr>';
for($i = 0; $i < mysql_num_fields($result); $i++) {
	echo '<td>';
	echo mysql_field_name($result,$i);
	echo '</td>';
}
echo '</tr>';
while($line = mysql_fetch_assoc($result)){
	echo '<tr>';
	foreach ($line as $item) {
		echo '<td>';
		echo $item;
		echo '</td>';
	}
	echo '</tr>';
}
echo '</table>';

Apr 09 2007

TNT Hauppauge HVR 1100

Tag: Unixberrisch @ 9:35 pm

The configuration files DVB:

http://www.linuxtv.org/cgi-bin/viewcvs.cgi/dvb-apps/util/scan/dvb-t/

To search channels:

dvbscan -n -o zap -p de-Frankfurt > ~/.xine/channels.conf




To watch a Movie in Text Mode (:

$ mplayer -vo aa xy.avi
$ mplayer -vo caca xy.avi


« Previous PageNext Page »