61 Posted Topics
Re: A contact us page will require that you use a form and the form needs to have an action - the action is which other file, usually a php file, that it will send the data to. The php file then processes the data sent to it to construct the … | |
Re: Why should the scenario need changing every year??? It's still a valid problem to be solved, and could easily be one of a set of two or three scenarios that get cycled round each year so that this year's students can ask last year's students for the answer. What matters … | |
Re: Phone number is NOT an integer You don't add, subtract multiple or divide them Phone numbers are strings. And often have spaces in them for ease of reading (integers don't have spaces in them, do they?) Client address - should be split to include address and city, as well as … | |
Re: I know spam when I see it... | |
Re: `<td Bgcolor=<?php echo $row['PMStatus']?>` this says the Bgcolor= the $row['PMStatus']? And bgcolor is not a valid style name, and you should be using css to style it anyway. Also you havn't included you <table> or </table> tabs You should building it like this. <table> then the loop echoing each row … | |
Re: <form method="post" action=""> this occurs at two points in your code - line 46 and 54. So with no action to carry out, you will not get any updates of data edited in the forms occurring. The action is the file to run to carry out the update using the … ![]() | |
Re: Your input form is only asking for ONE job field. You can add to the form two or three more job fields ( or state fields as well I suspect). then process the input to concatenate these extra entries IF the extra fields are used, then alter your sql query … | |
Re: Read up on media queries. These set widths based on screen size with some sizes chosen to correspond to a few popular sizes of devices. You create a series of these media queries in your css file, set to be triggered if the screen is below or above the sizes … | |
Re: A union is intended to produce all the results as if they were in one table so for tableA {x,y,z,a,b,c} and tableB{p,q,r,s,t} , a union that asked for columns x,y,x from tableA and union with columns q,r,s for tableB would return the data x,y,z followed by q,r,s below it. That … | |
Re: You could add a few lines after that last if statement as an else to it (ie it has successfully been moved) to display the filename in another pop-up perhaps. putting it rather crudely, If (moved) !=true{ exit() } else { display filename } |
The End.