
voip03
Members-
Posts
693 -
Joined
-
Last visited
Everything posted by voip03
-
death.announcement.contact.php The above file format is correct? thank you
-
In the message variable you can insert table and inline CSS for styling the table OR CSS layout
-
You didn't even read the question, did you? Yes
-
add this headers
-
Can't figure out why I'm getting a blank screen...
voip03 replied to zelig's topic in PHP Coding Help
can u echo mysql_num_rows? -
Got stuck when using if else statement for user level
voip03 replied to shebbycs's topic in PHP Coding Help
1. It is good to check username and password . 2. Can you echo $row['userlevel'];? -
<form action="test.php" method="post"> <input type="checkbox" name="apple" value="apple">apple <br> <input type="checkbox" name="orange" value="orange">orange <br> <input type="submit"> </form> <? foreach ($_POST as $key => $value ) echo "<br>$key is checked"; ?> Hope you can get the idea
-
One Login Form can differentiate user or admin
voip03 replied to shebbycs's topic in PHP Coding Help
pl read this articles about session. http://php.about.com/od/advancedphp/ss/php_sessions.htm http://www.tizag.com/phpT/phpsessions.php http://phpsec.org/projects/guide/4.html Google it for admin login PHP... http://www.phpeasycode.com/adminlogin/ -
The POST Method BEST for you. ref:http://www.tutorialspoint.com/php/php_get_post.htm
-
<?php $s = "SELECT nome_curso, imagem_curso FROM cursos ORDER BY nome_curso"; $r = mysql_query($s); $n = mysql_num_rows($r); if($n !=0) { echo"<table width='750' border='1' cellspacing='0' cellpadding='1'><tr>"; while($row = mysql_fetch_assoc($r)) { echo "<td>". $row['nome_curso']."</td>"; echo "<td><img src='imagepath/images/". $row['imagem_curso'] ." ></td>"; } echo "</tr></table>"; } ?>
-
Correct way to create a table within <?php ?>
voip03 replied to NAmeviolated's topic in PHP Coding Help
<?php echo'<table width='750' border='1' cellspacing='0' cellpadding='1'> <tr> <td> This is my Table</td> </tr> </table>'; ?> -
<?php $url = 'http://www.mediafire.com/?niwske5oy33wzrz'; print_r(parse_url($url)); echo parse_url($url, PHP_URL_PATH); ?> http://au2.php.net/manual/en/function.parse-url.php
-
Check this site http://koivi.com/ie-png-transparency/
-
Passing variable values between pages session cookies URL Web Forms http://matthom.com/archive/2005/02/19/php-passing-variables-across-pages
-
1. Create DB and store the Data 2. Image one $add =’ABC’ // Foldername move_uploaded_file ($_FILES['userfile']['tmp_name'][0],'$add); 3. $add =’XYZ’ move_uploaded_file ($_FILES['userfile']['tmp_name'][1],'$add); // array 1-3
-
Display ALL session variable names and values
voip03 replied to xProteuSx's topic in PHP Coding Help
<?php session_start(); echo "<h3> PHP List All Session Variables</h3>"; foreach ($_SESSION as $key=>$val) echo $key." ".$val."<br/>"; ?> -
check php.ini file and change the Mail configuration values.
-
try to echo the $courseid and $program
-
echo "<p><b>View All</b> | <a href='module_viewpaginated.php?course=".$courseid."&program=".$program." ' target='lama'>View Paginated</a></p>"; To Where?
-
try this http://www.w3schools.com/php/php_ref_mail.asp
-
That good. Have fun with Mail. Mark it SOLVED.
-
You can Try echo "<a href='module_viewpaginated.php?course=".$courseid."&program=".$program." '>link</a>'";
-
<?php $from = "PHP Freak"; $headers = "MIME-Version: 1.0\r\n"; $headers.= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers.= "From: $from\r\n"; $to = "[email protected]"; $subject = "Email send!"; $body = "Hi,Email working?"; if (mail($to, $subject, $body,$headers)) { echo("<p>Message successfully sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); } ?>
-
Try with header http://php.net/manual/en/function.mail.php