Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for niladri.user

how can i integrate live video playing in my personal website?i mean live video streaming integration in the website. I need the help[ urgently.

Member Avatar for kvprajapati
0
51
Member Avatar for niladri.user
Member Avatar for Shanti C
0
47
Member Avatar for niladri.user

Why this error is showing? Please solve it!!!!!!!:'( :@ Allowed memory size of 33554432 bytes exhausted (tried to allocate 1464 bytes) I need a response immidiately!!!!!!

Member Avatar for khess
-1
100
Member Avatar for niladri.user

Why the javascript code is not running in this example? [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script language="javascript" type="text/javascript"> function check() { if(f1.form_name.value="") { alert("Please Insert the name!!!"); } else if(f1.form_user_id.value="") { alert("Please Insert the USER ID!!!!(MUST)"); } else if(f1.form_password.value="") { alert("Please Insert …

Member Avatar for Thirusha
0
64
Member Avatar for niladri.user

Can anyone send me a simple, understandable javascript code for form validation, including e-mail validation,name validation , password validation etc. pls! send me in hurry!!!:'(

Member Avatar for peter_budo
0
76
Member Avatar for niladri.user

Why the warning is showing and the header is not sendingwith this script? <?php function authenticateUser($user,$password) { $con=mysql_connect("localhost","root",""); mysql_select_db("niladri",$con); $sql="select * from user_profile where user_id='$user'and password='$password'"; $res=mysql_query("$sql",$con); if( ($row = mysql_fetch_array($res)) && ($user_id==$row["user"])&&($password == $row["password"] ) && ($password !="") ) return 1; else return 0; } ?> <?php $form_user_id=$_POST['form_user_id']; $form_password=$_POST['form_password']; …

Member Avatar for nav33n
0
147
Member Avatar for niladri.user

what is the problem with this code? <body bgcolor="#FFFF00"> <div align="center"> <table width="284" border="4" cellspacing="2" cellpadding="2"> <tr> <td width="92">cat_id</td> <td width="79">cat_name</td> <td width="79">choose product </td> </tr> <?php $id=$_GET['id']; $con=mysql_connect("localhost","root",""); mysql_select_db("niladri",$con); $sql="SELECT * FROM `subcategory`whare `cat_id`=`$id`"; $res=mysql_query("$sql",$con); while($row=mysql_fetch_array($res)) { ?> <tr> <td><?php echo $row[subcat_id];?></td> <td><?php echo $row[subcat_name];?></td> <td><a href="fetch3.php"?id=<?php echo $row[subcat_id]?>>click</a></td> …

Member Avatar for queenc
0
85
Member Avatar for niladri.user

Can anyone tell me the name of the websites from where i can get the [B][U][COLOR="Red"]free website design templates!![/COLOR][/U][/B] including flash files!! and many more!! pls. send all the possible links!!! i am not getting the satisfactory design templates!!!!!!:(

Member Avatar for hsemar
0
66
Member Avatar for niladri.user

pls help me!! why this code is not executing?also send me the exact code to fetch a table from a database in a table format in a web page!!!!! [code=php]<?php $con=mysql_connect("localhost","root",""); mysql_select_db("niladri",$con); $sql="SELECT * FROM `category` "; $res==mysql_query($sql); while($row==mysql_fetch_array($res)); { echo $row['cat_id']; echo $row['cat_name']; } ?>[/code] :'( :?: :icon_cry:

Member Avatar for niladri.user
0
58
Member Avatar for niladri.user

Can u pls. tell me? how to create a web page with a session locking functio. & also with login & logout facilities?

Member Avatar for nav33n
0
200
Member Avatar for niladri.user

<?php $con=mysql_connect("localhost","root",""); if(!$con) { die("could not connect:".mysql_error($con)); } mysql_select_db("form",$con); $result=mysql_query("select * from submit"); while($row=mysql_fetch_array($result)) { echo $row['name']." ".$row['roll']; echo "<br/>"; } mysql_close($con); ?>

Member Avatar for nav33n
0
44
Member Avatar for niladri.user

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php echo"Your posted name is\t".$_POST['name']; echo"Your posted roll is\t".$_POST['roll']; ?> <?php $con=mysql_connect("localhost","root",""); if(!$con) { die("could not connect:".mysql_error($con)); } mysql_select_db("form",$con); [COLOR="Red"]mysql_query("insert into submit values('$_POST['name']','$_POST['roll']')");[/COLOR] echo"1 record added"; mysql_close($con); ?> </body> </html> error is …

Member Avatar for niladri.user
0
143