No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
I have a question about how to set up a page in php to allow the user to create reports from a mysql database and display in a grid on the page. I want them to build the query and save it to the another table and list on their … | |
For those that have a good understanding of PHP arrays, I have a form that takes in multiple inputs that can be added to the form by js, the data is added to the codeRef[] array and I have tried to do several different things to get the data into … | |
Ok I am working something that I have seen others do and that is to echo out a form table and what I am trying to do is to get the data that is not assigned to a user and allow the admin to assign it to the user. I … ![]() | |
I have a table that is populated by database and each of the rows is a from with a submit button. The idea is there is a drop down selection and upon selecting it then submitting the form updates the database. The problem is that the row form does not … | |
Re: this is how i accomplished the same aspect for handling auth page users. <?php function logged_in_redirect() { if(user_page()=== 1) { header('Location: customer/index.php'); } elseif(user_page() ===2) { header('Location:customer/index.php'); } elseif (user_page() ===3) { header('Location:contractor/index.php'); } elseif(user_page() ===4) { header('Location:contractor/index.php'); } elseif(user_page() ===5) { header('Location:architect/index.php'); } elseif(user_page() ===6) { header('Location:architect/index.php'); } elseif(user_page() … | |
Can anyone help me with constructing navigation tab notification, something that shows the total notifications like new event that was just inserted into the database and when clicking on the tab for the event the notification numbers goes away. I have tried Google for hours but I dont know if … | |
I have a question of dynamic elements in php loaded through mysql. The PHP code is as follow <?php $query = "SELECT * FROM `fee_table` WHERE fee_class_id = 6 "; $result = mysql_query($query) or die(mysql_error()); // Print out the contents of the entry echo "<table width='400'>"; echo "<th width='10' scope='col'>Qty</th>"; … | |
Hello, First let me start of by saying that I am new to javascript and ajax, but I thing I need them to accomplish what I am trying to do and here it is. I have there search forms, 1 search owner, 2 search contractor, 3 search properity. Then I … | |
Hello to everyone I am new to the site and have a question. I have a page that has a form to input into MySQL using PHP. What I am trying to do is have two searches that pulls out the information from different tables within the database, and put … |
The End.