No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
You need to post **some part of your code** so that people here not only see your effort in the regard, but also help you in detail :) Following is a link which I hope will help you: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.selectedrow.aspx
You need to install XML Tools if not installed yet: 1. Go to Plugins -> Plugin Manager -> Show Plugin Manager and then look for XML Tools and install it. 2. Once installed, then you can either hold clt+alt+shift+b together OR go to Plugins -> XML Tools -> Pretty Print. …
I think you should be using $_SESSION instead of $_COOKIES. There is slight difference between the two; cookies retain information until deleted whereas sessions retain information till browser is active. Try doing this if it fulfills all your requirements.
The page you are echoing it on, should have the basic html tags too like : > <html> > <head></head> > <body></body> > </html> And echo it in the body. I hope this helps.
require_once(LIBRARY_PATH . "phpmailer.php"); require_once(CONFIG_PATH . "emailconfig.php"); class email { public function sendMail($from,$fromname,$subject,$content,$to){ $mail = new PHPMailer(); $mail->SMTPAuth = SMTPAuth ; $mail->IsSMTP(); $mail->SMTPSecure = SMTPSecure; $mail->Host = Host; $mail->Port = Port; $mail->Username = Username; $mail->Password = Password; $mail->From = $from; $mail->FromName = $fromname; $mail->Subject = $subject; $mail->Body = $content; $mail->AddAddress($to); $mail->IsHTML(true); …
i want to buy an rfid reader for my final year project. if someone can tell the names of companies in pakistan which deal in rfid products.
how can we read data from serial port,if data is arriving continuously. the hardware sending the serial data includes microcontroller and max232. the software to access the data is a website made using visual studio 2005(c#). if someone has worked and has successfully received data serially, please help.
The End.
amy2389