Search results

  1. espfutbol98

    Desktop Lock Program

    I've looked through a lot of similar programs but they don't really do what I want. I wondering of it would be possible to make a locking program with a pop-up box with an image and textbox.
  2. espfutbol98

    Desktop Lock Program

    I was wondering how hard it would be to write a program to simply lock the desktop, set the background to blue, and have a textbox with an image and a password input. I have no clue which language to use: .Net, C++, C#, VB, or Java but what I do know it I know nothing about these languages. I've...
  3. espfutbol98

    AJAX loading image in login page

    Works great, thanks everybody for your help. Sorry if I was a bit slow at comprehending things ;)
  4. espfutbol98

    AJAX loading image in login page

    Okay, now I got it to work perfectly under the name loading_test.php but when I renamed it to login.php to replace my old file it doesn't work. I have the url rewritten to something like https://podaci.co.uk/2f6e61736c6f766e696361/login (depending on the referrer url) with all of the same...
  5. espfutbol98

    AJAX loading image in login page

    This worked perfectly (by switching value with password) Now the ajax passes all of the variables and the script creates the sessions but it does not appear to reflect the header("Location:");. Basically, you login but still stay at the login page. Any ideas?
  6. espfutbol98

    AJAX loading image in login page

    Alright, I moved the variable references around but it's still not passing the values, I think it must be something with the html because I didn't change the JavaScript any from the working sample. Oh, and let me reiterate, I don't know anything about JavaScript. function ajax(){...
  7. espfutbol98

    AJAX loading image in login page

    Yet again, I have one last problem: even though I got the sample script working, when I try to implement it nothing happens. I think the code is too long to post so its at https://podaci.co.uk/loading_test. The serverside script is basically what was in the sample. I'm trying to get the script...
  8. espfutbol98

    AJAX loading image in login page

    YES! it works. Thanks everybody, here's the code becuause I'm sure this well be helpful to others: <?php if( isset( $_POST[ 'submission' ] ) ){ sleep( 2 ); if( isset( $_POST[ 'username' ] ) && trim( $_POST['username']) != '' ){ echo 'submitted username is ' . trim( $_POST[ 'username'...
  9. espfutbol98

    AJAX loading image in login page

    Okay I moved the username variable but I've been looking online for documentation of response but I can't find anything. Here is what I have so far but it doesn't return anything. <?php if(isset($_POST['username'])) { sleep( 2 ); echo $_POST['username']; exit(); } ?> <!DOCTYPE html...
  10. espfutbol98

    AJAX loading image in login page

    Okay I got the example working and I fixed the errors in the css but I tried to get it to pass variables and it doesn't seem to work: <?php if(isset($_POST['username'])) { sleep( 2 ); echo $_POST['username']; exit(); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  11. espfutbol98

    AJAX loading image in login page

    Alright, here is what I have so far... <?php include "include.php"; include "conn.inc.php"; if ($_SERVER['HTTPS'] != "on") { $url = "https://". $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; header("Location: $url"); exit; } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0...
  12. espfutbol98

    AJAX loading image in login page

    I've been working on having a loading gif when someone clicks on the login button but something always goes wrong even when I follow online tutorials. I was wondering if somebody could just show be the most basic html form with the corresponding ajax; I don't even really need the php file. I...
  13. espfutbol98

    AJAX file upload system (PHP)

    I have built this fairly rudimentary file uploading system in the admin section of the site but I thought I'd jazz it up a little by adding some AJAX. So far, I have almost everything done except for when I post the file, the location to be saved (in a hidden input) is conveyed but the filename...
  14. espfutbol98

    Help with .zip archives plz!!

    Ha I go to that site every day along with fieldsupport.lingnet.org. Thay actually pretty much know me by name, epically their security tech haha. All the downloads they have available to people not on a .mil or .gov network are boring ant not the languages I want. I have most of the secure Iraqi...
  15. espfutbol98

    Help with .zip archives plz!!

    Alright I'll try those after the files finish downloading. I deleted them after they didn't work so I have to spend another 4 hours trying to get them again. Oh and if anybody was wondering, the course is not restricted in any way and is not copyrighted. It is public domain. :)
  16. espfutbol98

    Moron question

    yeah, you write commands in sql code and insert them in phpMyAdmin or have them in php files
  17. espfutbol98

    Which social networking sites do you like??

    Facebook is a lot more intuitive than Myspace with its interface and just basic layout. Myspace gives a lot of errors and just looks sloppy to me, also Myspace music and video sucks. Another thing Facebook has going for it is in a status, you just type in a link to a Youtube video and it...
  18. espfutbol98

    Help with .zip archives plz!!

    First of all, im trying to download the matrials that the US Military uses to train their translators in Serbo-Croatian. I aspire of going there one day and learning Serbo-Croatian but enough of that. I have found the rapidshare links...
  19. espfutbol98

    Help with javascript photoalbum

    IT WORKS!!!!! Thank you so much. I went to the script.aculo.us site and downloaded the effects.js file
  20. espfutbol98

    Help with javascript photoalbum

    Alrignt, I ordered the scripts like the originating site but now I get the error: Effect not defined on line 286 of scroller.js which is new Effect.Appear('fotoimg', { duration: 0.5, queue: 'end'}); and also Effect not defined on line 131 on scroller.js which is new...
Top