Forum: PHP Oct 6th, 2009 |
| Replies: 3 Views: 265 Depending on the browser but your best bet is to use a div tag and use css to set the width of the div tag. Let me know how it goes. |
Forum: PHP May 31st, 2009 |
| Replies: 7 Views: 533 Im trying to figure out how you are retrieving your variables?
Through sent data or a database?
Is any of your information ever stored on a database - link wise?
I can try figure out a solution if... |
Forum: PHP May 29th, 2009 |
| Replies: 21 Views: 1,058 Is this a short term or long term process?
If not you can just program it so the users are sent to the page automatically, else you can program in mysql.
There are various ways you can set up the... |
Forum: PHP May 29th, 2009 |
| Replies: 7 Views: 533 I think if you clean up your code you will get more responses.
Also what you are requesting is?
OPEN A THEN OPEN 1 THEN OPEN A1
Previous list (A then 1 then A1) should appear so the person is able... |
Forum: PHP May 29th, 2009 |
| Replies: 11 Views: 1,342 Your not listening or doing any of the posts reread them.
Till then im not giving you anymore of my time. |
Forum: PHP May 28th, 2009 |
| Replies: 11 Views: 1,342 I think I found the Problem:
dash your codes a mess still.
Make sure all tags parameters type, name, value, onclick, etc all start and end with either a " or if its in echos a '.
Values dont seem... |
Forum: PHP May 28th, 2009 |
| Replies: 11 Views: 1,342 Sorry I cant read your code maybe put it in code brackets.
If you are using mulltiple values you wish to store then an array should be used. |
Forum: PHP May 28th, 2009 |
| Replies: 6 Views: 484 So the only problem you having is converting and uploading the excel file, correct?
If so you should be able to use excel extension .csv to format this and import into mysql. If there are further... |
Forum: PHP May 28th, 2009 |
| Replies: 6 Views: 484 Sounds like your taking over someones old CMS.
You need to research and develop or redevelop each bit by bit (administration, uploading, etc).
If you have no previous PHP knowledge this will take... |
Forum: PHP May 28th, 2009 |
| Replies: 11 Views: 1,342 I think I know what is the problem, your syntax is incorrect:
echo "<form id=\"myForm\" method=\"post\" action=\"background_current.php\">";
echo "<INPUT TYPE=hidden NAME=select_pat_id VALUE="... |
Forum: PHP Apr 6th, 2009 |
| Replies: 11 Views: 673 Show us your code if there are problems with it.
Quick look the previous code should work.
Like i said should work using the date() and time() functions depending on what your requirements are? |
Forum: PHP Apr 3rd, 2009 |
| Replies: 10 Views: 610 Run a if statement using the date() function.
php.net => date() for examples |
Forum: PHP Apr 3rd, 2009 |
| Replies: 11 Views: 673 Maybe check the examples at date() and time() functions at php.net?
Maybe example of your problem would help also. |
Forum: PHP Jan 13th, 2008 |
| Replies: 8 Views: 936 I use javascript for any form validation that I require and resuse where required.
Javascript:
// Validates Numbers 0-9 0=48
function Numbers(e) {
var cc = (e.which) ? e.which :... |