Recent content by Jamaal E

  1. J

    Comic book Editor ........?

    There's a great article I read about editors here on this site: http://www.comicbookresources.com/?page=article&id=29899 But I'm still a bit unsure. I'm working on an independent comic (well graphic novel really) and I've begun creating the panel script for my artist. Then it hit me, it's...
  2. J

    Proper model for php website building?

    I've built my first PHP website, now I'm looking to refine the directory structure a bit but I can't seem to find the resource I'm looking for. A while back, I remember seeing something in regards to how the directory is supposed to be structured for all your PHP scripts. Something like you'd...
  3. J

    Proper model for php website building?

    I've built my first PHP website, now I'm looking to refine the directory structure a bit but I can't seem to find the resource I'm looking for. A while back, I remember seeing something in regards to how the directory is supposed to be structured for all your PHP scripts. Something like you'd...
  4. J

    Return variables from previously encrypted HTTP query String (php)?

    I have a query string that was encrypted and decrypted on the second page. The string originally held some values that need to be used on the second page. Problem the values are in just one large string. Ex. What's returned is msg=Florida&pro=4508 Commonly passing from page to page is...
  5. J

    Expire a session after certain amount of time of user inactivity in PHP?

    I would like a script or a way for the user session to expire if the user has remained inactive for a certain amount of time, where the time will reset to limit should the user more. If possible, also tells the user ahead of time when the session is about to expire. How do you do this?
  6. J

    mySQL and php: Primary key changing manually. Is it wrong?d you like to ask?

    I'm trying to create an image gallery using PHP and mySQL and one of the things I need to do is be able to reorder my data; if the user wants image 3 where image 2 is ect. Now the only way I could figure out that may work is to store both image numbers in a variable and then replace the data...
  7. J

    Reset Auto Incrementing across a column using PHP and mySQL?

    Hey guys, Ok so I have a table in mySQL that through php I delete a record. Each record is guided by pic_ID which is also the primary key of the table. The problem is say I have 10 records and I delete record number 5, records 6 through 10 disappear. I know why this happens but part of the...
  8. J

    New to AJAX and have a questions. Cant figure these out...?

    Is it possible to modify more than one object in one procedure or do you have to create a new function every-time? Like, I'd like to modify a text box or two or (what would have sloved my problem up till now) a variable.
  9. J

    How do you compare two timestamps in php?

    I have a variable named $date that takes the timestamp from a database. I want to compare that variable with the current time using the time() function wich I stored in a variable called $current. I tried doing something like: If ($date < $current) and it didn't seem to work. What am I doing...
  10. J

    New to AJAX and have a questions. Cant figure these out...?

    Is it possible to modify more than one object in one procedure or do you have to create a new function every-time? Like, I'd like to modify a text box or two or (what would have sloved my problem up till now) a variable.
  11. J

    Writing getelementbyID to PHP?

    I would like to put this: document.getElementById('contact_time').disabled = true inside a php print command like print 'whater'; but I dont know how to do it since the quotes around contact_time are in single quotes. I tried switching it out but still get an error.
  12. J

    PHP includes that contain Database connection strings?

    I've read or heard somewhere that having a PHP file that contains your database connection strings in your root directory is not a good idea. Is this true and if so, where do I move these PHP includes?
Back
Top