id $_getten in combo Jquery
een zeer compliceerd probleem dat niet mij maar niet lukt
ik heb een pagina met shouts
als ik over een shout hover komt er een text "verwijderen" tevoorschijn
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php while($row = mysql_fetch_array($user_shouts)) {
if($get_userdata['username'] == $_GET['username']){ $delete = " <span class='deleteshout'><a href='#?id=" . $row['id'] . "'>dd</a></span> "; }
echo "<div class='profile_shoutbox595'>";
echo "<div class='profile_shout_minipic'><img id='fotoprev' src='profielfotos/".$user_details['profielfoto']."' width='60' height='60'/></div>";
echo "<div class='profile_shouttext_xl'><span style='color: #000; font-weight: bold;'>" . $row['username'] . "</span> <span style='color: #09F'>@" . $row['vakgebied'] . "</span><span style='float:right; color:#ccc'>" . $row['datum'] . "</span><br />" . $row['shouts'] . "</div>";
echo "<br /><br /><div class='profile_shout_options'>".$delete."</div>";
echo "</div>" ; }
?>
if($get_userdata['username'] == $_GET['username']){ $delete = " <span class='deleteshout'><a href='#?id=" . $row['id'] . "'>dd</a></span> "; }
echo "<div class='profile_shoutbox595'>";
echo "<div class='profile_shout_minipic'><img id='fotoprev' src='profielfotos/".$user_details['profielfoto']."' width='60' height='60'/></div>";
echo "<div class='profile_shouttext_xl'><span style='color: #000; font-weight: bold;'>" . $row['username'] . "</span> <span style='color: #09F'>@" . $row['vakgebied'] . "</span><span style='float:right; color:#ccc'>" . $row['datum'] . "</span><br />" . $row['shouts'] . "</div>";
echo "<br /><br /><div class='profile_shout_options'>".$delete."</div>";
echo "</div>" ; }
?>
alemaal ok
als ik op verwijder klik opent hij een jquery #dialog
met deze div
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php
$get_user_post = "SELECT * FROM all_shouts WHERE id = '".$_GET['id']."' " ;
$user_post = mysql_fetch_assoc(mysql_query($get_user_post));
echo "<div class='profile_shoutbox595'>";
echo "<div class='profile_shout_minipic'><img id='fotoprev' src='profielfotos/".$user_post['profielfoto']."' width='60' height='60'/></div>";
echo "<div class='profile_shouttext_xl'><span style='color: #000; font-weight: bold;'>" . $user_post['username'] . "</span> <span style='color: #09F'>@" . $user_post['vakgebied'] . "</span><span style='float:right; color:#ccc'>" . $user_post['datum'] . "</span><br />" . $user_post['shouts'] . "</div>";
echo "</div>" ;
?>
$get_user_post = "SELECT * FROM all_shouts WHERE id = '".$_GET['id']."' " ;
$user_post = mysql_fetch_assoc(mysql_query($get_user_post));
echo "<div class='profile_shoutbox595'>";
echo "<div class='profile_shout_minipic'><img id='fotoprev' src='profielfotos/".$user_post['profielfoto']."' width='60' height='60'/></div>";
echo "<div class='profile_shouttext_xl'><span style='color: #000; font-weight: bold;'>" . $user_post['username'] . "</span> <span style='color: #09F'>@" . $user_post['vakgebied'] . "</span><span style='float:right; color:#ccc'>" . $user_post['datum'] . "</span><br />" . $user_post['shouts'] . "</div>";
echo "</div>" ;
?>
er verschijnt in de url balk een correct id maar het script wilt het niet lezen
is dat omdat er geen form is dat die id effectief get.
als ik het met form doe werkt men jquery niet
hoe los ik dit het beste op?
Er zijn nog geen reacties op dit bericht.