-
Replied To a Post in Auto number generating
or simply <?php echo mt_rand(); ?> -
Began Watching padding
I am trying to place padding for the table so that it looks good. but how? index.php <table border="0" width="300px"> <tr style="background-color:#ede6c9; color: black;"> <td> <?php // How can we … -
Replied To a Post in padding
tr{background-color:#ede6c9; color: black;} -
Began Watching Run PHP as a Cross-Platform Desktop Application
Recently I've stumbled on a nice tool that I really quite like, so I thought I'd share it: Personally, I love the power behind PHP. I find it a very … -
Replied To a Post in Run PHP as a Cross-Platform Desktop Application
looks good , struggling a bit setting up PDO and sqlite but seems to be a path problem -
Began Watching ZEND STUDIO PHP EXAMPLE
I just installed ZEND STUDIO to make a mobile application out of my php files. Does anyone knows any good tutorial or examples? -
Replied To a Post in ZEND STUDIO PHP EXAMPLE
http://www.pluralsight.com/courses/building-php-applications-zend-framework maybe -
Began Watching login problem
how to admin and user to login in the same interface but after login admin will go to page register staff. while the user will go to search page staff … -
Replied To a Post in login problem
do you have a distinction in your database for admin? -
Began Watching sql server
please assist. i can not connect to my sql server (172.16.15.119). i always get this message"Fatal error: Call to undefined function sqlsrv_connect() in C:\Program Files (x86)\EasyPHP-12.1\www\malunde\connect.php on line 5" and … -
Replied To a Post in sql server
undefined function sqlsrv_connect() a clue maybe? -
Replied To a Post in string reverse
love learning.array_reverse, thats neat -
Began Watching string reverse
Hi, how to reverse first name and last name of string in dynamically. ex: input:: hello php world output:: world php hello -
Replied To a Post in string reverse
perhaps explode then echo in reverse <?php $hello = "hello world"; $part = explode(" ", $hello); echo $part [1]; // piece1 echo $part [0]; // piece2 ?> -
Began Watching Carry Forward
Any body know how to do balance carry forward in php -
Replied To a Post in Carry Forward
i dont so what is Balance carry forward? i know balance forwarding in accounts but dont understand thia at all -
Began Watching login
<?php session_start(); $user=$_POST['uname']; $_SESSION['username']=$user; $con=mysql_connect("localhost","root",""); mysql_select_db("airline")or die("Db error"); $username=$_POST['uname']; $password=$_POST['ptxt']; $username = stripslashes($username); $password = stripslashes($password); $username = mysql_real_escape_string($username); $password = mysql_real_escape_string($password); $query = mysql_query("select * from user where password='$password' … -
Replied To a Post in login
to do what? -
Began Watching Login button
Hello, I am trying to make the login button thinner. Like a clickable image. Is it possible? This is the code that I have (below). The result is a thick … -
Replied To a Post in Login button
<input type="image" src="submit.gif" alt="Submit" width="48" height="28"> that should work -
Began Watching How to make 3 column records in FPDF
Hi I make **FPDF output** of data in 3 simple columns with word wrap content. For E.g Like Table Structure. Title-1 | Title-2 | Title-3 Coln-1,Coln-2 | Coln-1,Coln-2 | Coln-1,Coln-2 … -
Replied To a Post in How to make 3 column records in FPDF
try this, it might help http://www.vonderborn.com/extended-tables-with-fpdf.php -
Replied To a Post in SEO Dynamic Links
RewriteEngine On RewriteRule ^blog/([^/]*)$ /?id=$1 [L] then i think -
Began Watching SEO Dynamic Links
I hope someone can help me. I have been working on this for several days and can not figure it out. I made a blog and I am trying to … -
Replied To a Post in SEO Dynamic Links
not good with these but should that not be RewriteRule ^blog/([a-zA-Z0-9]+)$ /viewposts.php?id=$1 [L] -
Began Watching Php echo not working in phtml
Php echo not working in phtml templates -
Replied To a Post in Php echo not working in phtml
did you AddHandler php-cgi .phtml ... ? -
Began Watching Form
Hello, I am trying to create a form, yet I wonder why the form does not works like usually: index.php <form action="login.php" method="POST"> <input type="text" class="form" name="email"><br> <div style="margin: -60px … -
Replied To a Post in Form
<input name="Submit" type="submit" value="Submit"> -
Began Watching Hi-Lite PHP / MySQl Table Rows based on certain variable in Array (I Think)
Here is the code. I am trying to hi-lite rows that are generated that have a value of "Y" for column AA_letter_recd in yellow, the rows . The ones that … -
Replied To a Post in Hi-Lite PHP / MySQl Table Rows based on certain variable in Array (I Think)
if(condition) { //do stuff } -
Began Watching unable to receive email notification in php
Hi...tried to send email notification in php but not successful. When i check my email there is no email notification received. Below is the coding. Once the user click notify … -
Replied To a Post in unable to receive email notification in php
you can also use this, it saves the test mail into a folder of your choosing as a file works ok, http://www.toolheap.com/test-mail-server-tool/. free BTW -
Began Watching Add 'Required' to all fields in contact form
I have the following form that I need the fields to be mandatory before submission: form name="application" id="applicatipn" method="post" action="send_mail.php" > <h2 class="title">form</h2> <p class="sub-text">XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX </p> <table width="620px"> <tr class="bg-grey"> … -
Replied To a Post in Add 'Required' to all fields in contact form
this might help you, i did a search on site https://www.daniweb.com/web-development/php/threads/273362/add-required-fields-to-php-contact-form -
Began Watching Old password always said "incorrect"
Can someone help me with below script, this is script for change password. But it always can't recognize the old password. i'm really thankfull for your comments.. <?php include("plogin.php"); //$_SESSION["userId"] … -
Replied To a Post in Old password always said "incorrect"
why is this commented out? <?php include("plogin.php"); //$_SESSION["userId"] = $_POST['id']; //$userId = $_POST['id']; and put session_start(); at the begining -
Began Watching opensource / tutorial for 1 to 1 chat
Is there any tutorial or free opensource for online one to one user chat for a website ? -
Replied To a Post in opensource / tutorial for 1 to 1 chat
http://codegeekz.com/10-free-chat-applications-for-your-websites/ -
Began Watching Send email from html form via php
I have an enquiry form where once the user click the submit button the form mailhandler.php and sends the email to myself. I have tried doing this through php but … -
Replied To a Post in Send email from html form via php
i just teseted yor code and both mails were sent. Problem is elsewhere then i would say -
Began Watching php not displaying echo command
Ok, so here is the problem. Below is a fairly simple code that will count the number of members registered to a site. The html works just fine but the … -
Replied To a Post in php not displaying echo command
well although you are still using mysql you could do something like $query = "SELECT COUNT(id) FROM members"; $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)){ echo "There are ". … -
Began Watching I Can't browse my site online.
please help.. why I can't browse my website online even though it is already uploaded.? please help.. -
Replied To a Post in I Can't browse my site online.
http://www.monique-design.com/ opens . oops sorry missed an s -
Replied To a Post in mail() injection from spammers
@mattster yes i wanted to try to add a hearer in a $_POST to test the validation, such as test message to an address of mine , i cant fing … -
Created mail() injection from spammers
I had noticed a lot of returned mails with spam content arriving daily. i renewed the old mailing scripts (which was overdue) to include jquery clientside(irrelevant i know) and serverside … -
Began Watching mail() injection from spammers
I had noticed a lot of returned mails with spam content arriving daily. i renewed the old mailing scripts (which was overdue) to include jquery clientside(irrelevant i know) and serverside … -
Began Watching Need Help In Rewrite Mod
Hi, I am new in php i want to cahnge this url with mod rewrite localhost/web/index.php?a=profile&u=user to localhost/web/user i try with this rewrite but it does not work.. RewriteEngine on … -
Replied To a Post in Need Help In Rewrite Mod
Try RewriteEngine On RewriteRule ^([^/]*)\ /web/index.php?a=profile&u=$1 [L]
The End.