• Member Avatar for edbr
    edbr

    Replied To a Post in Auto number generating

    or simply <?php echo mt_rand(); ?>
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in padding

    tr{background-color:#ede6c9; color: black;}
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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?
  • Member Avatar for edbr
    edbr

    Replied To a Post in ZEND STUDIO PHP EXAMPLE

    http://www.pluralsight.com/courses/building-php-applications-zend-framework maybe
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in login problem

    do you have a distinction in your database for admin?
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in sql server

    undefined function sqlsrv_connect() a clue maybe?
  • Member Avatar for edbr
    edbr

    Replied To a Post in string reverse

    love learning.array_reverse, thats neat
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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 ?>
  • Member Avatar for edbr
    edbr

    Began Watching Carry Forward

    Any body know how to do balance carry forward in php
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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' …
  • Member Avatar for edbr
    edbr

    Replied To a Post in login

    to do what?
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Login button

    <input type="image" src="submit.gif" alt="Submit" width="48" height="28"> that should work
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    Replied To a Post in SEO Dynamic Links

    RewriteEngine On RewriteRule ^blog/([^/]*)$ /?id=$1 [L] then i think
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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]
  • Member Avatar for edbr
    edbr

    Began Watching Php echo not working in phtml

    Php echo not working in phtml templates
  • Member Avatar for edbr
    edbr

    Replied To a Post in Php echo not working in phtml

    did you AddHandler php-cgi .phtml ... ?
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Form

    <input name="Submit" type="submit" value="Submit">
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Hi-Lite PHP / MySQl Table Rows based on certain variable in Array (I Think)

    if(condition) { //do stuff }
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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"> …
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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"] …
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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 ?
  • Member Avatar for edbr
    edbr

    Replied To a Post in opensource / tutorial for 1 to 1 chat

    http://codegeekz.com/10-free-chat-applications-for-your-websites/
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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 ". …
  • Member Avatar for edbr
    edbr

    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..
  • Member Avatar for edbr
    edbr

    Replied To a Post in I Can't browse my site online.

    http://www.monique-design.com/ opens . oops sorry missed an s
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    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 …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Need Help In Rewrite Mod

    Try RewriteEngine On RewriteRule ^([^/]*)\ /web/index.php?a=profile&u=$1 [L]

The End.