mirror of
https://github.com/CAcertOrg/cats.git
synced 2024-11-03 12:44:03 +00:00
33 lines
1.3 KiB
PHP
Executable file
33 lines
1.3 KiB
PHP
Executable file
<?php
|
|
function reallyDelTopic($t_id){
|
|
// WErtprüfung
|
|
$t_id=abs(intval($t_id));
|
|
|
|
echo"<form action='index.php?site=topic&action=delTopic&t_id=$t_id' method='post'>";
|
|
echo "<fieldset >";
|
|
echo " <legend>".Function_reallyDel_01." </legend> ";
|
|
echo "<label class='del'>".Function_reallyDel_02."</label>";
|
|
echo "<br />";
|
|
echo "<label class='del'>".Function_reallyDel_03." </label>";
|
|
echo "<input name='submit' class='Button_right' type='submit' value='".Global_13."' />";
|
|
echo "<input name='submit' class='Button_right' type='submit' value='".Global_14."' />";
|
|
echo "</fieldset>";
|
|
echo "</form>";
|
|
}
|
|
|
|
function reallyDelQuestion($q_id,$t_id){
|
|
// Wertprüfung
|
|
$t_id=abs(intval($t_id));
|
|
$q_id=abs(intval($q_id));
|
|
|
|
echo"<form action='index.php?site=topic&action=delQuestion&q_id=$q_id&t_id=$topic_id' method='post'>";
|
|
echo "<fieldset >";
|
|
echo " <legend>".Function_reallyDel_01."</legend> ";
|
|
echo "<label class='del'> ".Function_reallyDel_04."</label>";
|
|
echo" <input name='submit' class='Button_right' type='submit' value='".Global_13."' />";
|
|
echo" <input name='submit' class='Button_right' type='submit' value='".Global_14."' />";
|
|
echo "</fieldset>";
|
|
echo "</form>";
|
|
}
|
|
|
|
?>
|