• Member Avatar for edbr
    edbr

    Began Watching help understanding classes

    im trying to work/modify with a class i downloaded. sadly im not getting it. I have yahoogled oop and its not making me any wiser. can some one explain please …
  • Member Avatar for edbr
    edbr

    Began Watching can you suggest for a new cool, fun or useful project in php?!!

    Hi. I'm thinking about a new project in php.... any idea of a cool and fun or useful and efficient project?!
  • Member Avatar for edbr
    edbr

    Replied To a Post in can you suggest for a new cool, fun or useful project in php?!!

    a booking calendar with payment gateway maybe, 56there is a lot of call for those
  • Member Avatar for edbr
    edbr

    Replied To a Post in php pigmy requests guidance

    it did occour that a lass might be good as im thinking of this as reusable but im only on nodding terms with OOP, might be a good reason to …
  • Member Avatar for edbr
    edbr

    Replied To a Post in php pigmy requests guidance

    whoops done it and feeling bit embarrassed ` $dbh->exec( $create) ` tied myself in Knots. I would still appreciate some clues to advance this a bit
  • Member Avatar for edbr
    edbr

    Created php pigmy requests guidance

    I am helping a friend build as site and at a testing stage. it came to creating a database and i discovered he was a bity lost. i explained howto …
  • Member Avatar for edbr
    edbr

    Began Watching php pigmy requests guidance

    I am helping a friend build as site and at a testing stage. it came to creating a database and i discovered he was a bity lost. i explained howto …
  • Member Avatar for edbr
    edbr

    Began Watching how to get current TIMESTAMP in php to fill in db row with TIMESTAMP type

    Hello everybody. There is a row in my db table I have set it's type as "TIMESTAMP". How should I fill in? Should get the current timestamp in php and …
  • Member Avatar for edbr
    edbr

    Replied To a Post in how to get current TIMESTAMP in php to fill in db row with TIMESTAMP type

    in your database (phpadmin for example) use default current_timestamp and in attribute on update current_timestamp
  • Member Avatar for edbr
    edbr

    Began Watching web development

    how to convert simple hmlt website template to php.? and how to create that website database on xampp.?
  • Member Avatar for edbr
    edbr

    Replied To a Post in web development

    many resourses online yu couls try here for example `http://www.tizag.com/phpT/`
  • Member Avatar for edbr
    edbr

    Replied To a Post in Help in using inner join to join three tables

    specify student_code, s.student_code
  • Member Avatar for edbr
    edbr

    Replied To a Post in Help in using inner join to join three tables

    try s.student_code then
  • Member Avatar for edbr
    edbr

    Began Watching Help in using inner join to join three tables

    I have three tables namely student, result and subject but whenever i try to join them i get this error message in the browser Database query failed: Unknown column 'student.student_code' …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Help in using inner join to join three tables

    from mysql SELECT t1.name, t2.salary FROM employee AS t1 INNER JOIN info AS t2 ON t1.name = t2.name; SELECT t1.name, t2.salary FROM employee t1 INNER JOIN info t2 ON t1.name …
  • Member Avatar for edbr
    edbr

    Began Watching redirect users to specific user group

    hya i have 2 user goups in my website one for couples and one for singles what im wanting to know is when a couple registers how can i direct …
  • Member Avatar for edbr
    edbr

    Replied To a Post in redirect users to specific user group

    as the comented refer to different /members, it looks like a modyfied script. i would check the form field names that sends to this. just a guess
  • Member Avatar for edbr
    edbr

    Began Watching load SQL server driver in PHP

    Can any one help me to load SQL server dlls in PHP.ini
  • Member Avatar for edbr
    edbr

    Replied To a Post in load SQL server driver in PHP

    https://msdn.microsoft.com/en-us/library/cc296203%28v=sql.105%29.aspx
  • Member Avatar for edbr
    edbr

    Began Watching is it possible to retrive the values from .php to .html page?

    this is my shash.html page <!DOCTYPE HTML> <html> <head> </head> <body> <form action="shash.php" method="post"> Name:<input type="text" name="username" id="username"> <span class="error">*<?php echo "$nameError" ; ?></span> Password:<input type="password" name="password" id="password"><br> Email:<input type="text" …
  • Member Avatar for edbr
    edbr

    Replied To a Post in is it possible to retrive the values from .php to .html page?

    well another roundabout way is to write the result to a file ex. <?php $file = fopen("text.txt","w"); echo fwrite($file,"Hello World. Testing!"); fclose($file); ?> then the reult can be retrieved in …
  • Member Avatar for edbr
    edbr

    Began Watching Requisition and issue slip

    sample code of requisition and issue slip pls. .how to create it. .
  • Member Avatar for edbr
    edbr

    Replied To a Post in Requisition and issue slip

    is that what you want , http://www.biztree.com/doc/requisition-slip-D1124 ? how do you plan to use it? you will need to be a lot clearer
  • Member Avatar for edbr
    edbr

    Began Watching How to make multi level menu

    how to make multilevel menu like .A .B .C .D C & D is the sub-menu of B , B is the sub-menu of A A is main-menu
  • Member Avatar for edbr
    edbr

    Replied To a Post in How to make multi level menu

    css or javascript not php
  • Member Avatar for edbr
    edbr

    Began Watching Can someone help me with some useful information about Yii framework?

    I am developing a website for my small online business when my friend suggested me Yii framework. On researching about the same, I found from this source ( http://probytes.net/services/yii-development/ ) …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Can someone help me with some useful information about Yii framework?

    would that not depend on your own crireria? maybe look at a comparison guide. http://socialcompare.com/en/comparison/php-frameworks-comparison
  • Member Avatar for edbr
    edbr

    Replied To a Post in Deleting selected rows

    also here was a similar post https://www.daniweb.com/web-development/php/threads/325005/delete-multiple-rows-using-checkboxes
  • Member Avatar for edbr
    edbr

    Began Watching Deleting selected rows

    I hvae been working on this code for hours and can't figure out how to delete information from a database. It is currently claiming that result and checkbox aren't variables... …
  • Member Avatar for edbr
    edbr

    Replied To a Post in Deleting selected rows

    $result = mysql_query("DELETE FROM $Pet WHERE Pet_ID IN($ids) ") or die(mysql_error()); } 0r $result = mysqli_query("DELETE FROM $Pet WHERE Pet_ID IN($ids) ") or die(mysql_error()); }
  • Member Avatar for edbr
    edbr

    Marked Solved Status for works on local server but not live

    im sure im missing something obvious, i just cant see it any more. i had a fail on a site as i tried live, i tried to break the problem …
  • Member Avatar for edbr
    edbr

    Replied To a Post in works on local server but not live

    got it done with below. thx $sql= "SELECT * FROM villadata "; $result = $test->query($sql); while($row = $result->fetch_array()) { $rows[] = $row; } foreach($rows as $row) { if( $row['area']=='Sanur'){ echo …
  • Member Avatar for edbr
    edbr

    Replied To a Post in works on local server but not live

    thnk you , i got it working using PDO but I could not see why it would worl locally and not live
  • Member Avatar for edbr
    edbr

    Edited works on local server but not live

    im sure im missing something obvious, i just cant see it any more. i had a fail on a site as i tried live, i tried to break the problem …
  • Member Avatar for edbr
    edbr

    Created works on local server but not live

    im sure im missing something obvious, i just cant see it any more. i had a fail on a site as i tried live, i tried to break the problem …
  • Member Avatar for edbr
    edbr

    Began Watching works on local server but not live

    im sure im missing something obvious, i just cant see it any more. i had a fail on a site as i tried live, i tried to break the problem …
  • Member Avatar for edbr
    edbr

    Marked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Replied To a Post in jquery noob

    ok dumb i get it now
  • Member Avatar for edbr
    edbr

    Revoked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Revoked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Revoked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Replied To a Post in jquery noob

    strangest thing is i see the form fields but they donot appear in the page source or if i print_r ($_post) i am not getting the data so csomething seekms …
  • Member Avatar for edbr
    edbr

    Marked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Revoked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Marked Solved Status for jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Replied To a Post in jquery noob

    thanks for c;larifying that, i got it. i got bogged down with the choices i think. :)
  • Member Avatar for edbr
    edbr

    Replied To a Post in jquery noob

    i think it would be better to use an existing , this seems to create on the fly though
  • Member Avatar for edbr
    edbr

    Created jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Began Watching jquery noob

    i am trying to get to modify this script . i have a form that returns the longditude and latitude from google map api. I am trying to insert that …
  • Member Avatar for edbr
    edbr

    Began Watching PHP Website Development

    I need to create a new site in PHP and need to host in cloud. Can anyone say in which DB I can host my site?

The End.