• Login
  • Register
  • Zoek
Everywhere
  • Everywhere
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Leden
  3. thexerox

Forum

  • Ictscripters Chat

    Frenzo.Brouwer 9 maart 2026 om 21:31
  • Help testers nodig voor android app Urgent

    Servertjee 20 februari 2026 om 12:07
  • Partner Gezocht om meerdere NFT Collecties op Open Sea te Plaatsen

    Servertjee 20 februari 2026 om 12:06
  • Afspraken systeem met planbeperking

    Jeffrey.Hoekman 20 februari 2026 om 11:52
  • Developer Gezocht

    Servertjee 19 februari 2026 om 17:31
  • Na 15 jaar terug van weggeweest: iCriminals.nl is terug (BETA)!

    Servertjee 18 februari 2026 om 16:57
  • Op zoek naar de legends

    Syntax 5 januari 2026 om 13:50
  • [FREE] WeFact Hosting module

    Jeroen.G 13 oktober 2025 om 14:09

Marktplaats

  • Heel wat sterke domeinen > 2 letters, 3 letters, premiums

    Michael DW 11 maart 2026 om 12:12
  • 367 Nieuwe Domeinnamen Februari 2026

    shiga 1 maart 2026 om 14:50
  • Meerdere mafia game template te koop

    Syntax 16 februari 2026 om 13:34

Posts by thexerox

  • Variables

    • thexerox
    • 28 mei 2011 om 16:39
    PHP
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
    
    
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
    <script type="text/javascript">
    
    
    
    
    $(document).ready(function()
    {
     
    	$("#username").blur(function()
    	{
    		//remove all the class add the messagebox classes and start fading
    		$("#msgbox").removeClass().addClass('messagebox').text('Kijken in de database').fadeIn("slow");
    		//check the username exists or not from ajax
    		$.post("register/user_availability.php",{ user_name:$(this).val() } ,function(data)
            {
    		  if(data=='no') //if username not avaiable
    		  {
    		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Deze gebruikersnaam bestaat al').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
              	else	  {
    		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Deze naam is nog niet in gebruik').addClass('messageboxok').fadeTo(900,1);	
    			});
    		  }
    				
            });
     
    	});
    });
    
    
    $(document).ready(function()
    {
     
    	$("#pass").blur(function()
    	{
    		//remove all the class add the messagebox classes and start fading
    		$("#passmessage").removeClass().addClass('messagebox').text('Wachtwoord check').fadeIn("slow");
    		//check the username exists or not from ajax
    		$.post("register/pass_check.php",{ user_name:$('#username').val(),pass:$('#pass').val() } ,function(data)
            {
    		  if(data=='no') //if username not avaiable
    		  {
    		  	$("#passmessage").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je wachtwoord is het zelfde als je gebruikersnaam').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    		  
    		  else if(data=='min') //if username not avaiable
    		  {
    		  	$("#passmessage").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je moet minimaal 8 tekens in je wachtwoord').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    		  else if(data=='empty') //if username not avaiable
    		  {
    		  	$("#passmessage").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je moet wel wat invullen').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    else		  {
    		  	$("#passmessage").fadeTo(200,0.1,function()  //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Dit wachtwoord is goed').addClass('messageboxok').fadeTo(900,1);	
    			});
    		  }
    				
            });
     
    	});
    });
    
    
    $(document).ready(function()
    {
     
    	$("#regels").blur(function()
    	{
    		//remove all the class add the messagebox classes and start fading
    		$("#regelbericht").removeClass().addClass('messagebox').text('Regelcheck').fadeIn("slow");
    		//check the username exists or not from ajax
    		$.post("register/regel_check.php",{ regels:$('#regels').val()} ,function(data)
            {
    		  if(data=='no') //if username not avaiable
    		  {
    		  	$("#regelbericht").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Accepteer de regels').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    		 
    else		  {
    		  	$("#regelbericht").fadeTo(200,0.1,function()  //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je heb de regels geaccepteert').addClass('messageboxok').fadeTo(900,1);	
    			});
    		  }
    				
            });
     
    	});
    });
    
    
    
    
    $(document).ready(function()
    {
     
    	$("#pass2").blur(function()
    	{
    		//remove all the class add the messagebox classes and start fading
    		$("#herhaalmessage").removeClass().addClass('messagebox').text('Wachtwoord check').fadeIn("slow");
    		//check the username exists or not from ajax
    		$.post("register/pass_herhaal.php",{ pass:$('#pass').val(),pass2:$('#pass2').val() } ,function(data)
            {
    		  if(data=='no') //if username not avaiable
    		  {
    		  	$("#herhaalmessage").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je wachtwoorden zijn niet gelijk').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    		  
    		  
    else if(data=='empty') //if username not avaiable
    		  {
    		  	$("#herhaalmessage").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je heb geen wachtwoord ingevult').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    		  
    		  
    else		  {
    		  	$("#herhaalmessage").fadeTo(200,0.1,function()  //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je wachtwoorden zijn gelijk').addClass('messageboxok').fadeTo(900,1);	
    			});
    		  }
    				
            });
     
    	});
    });
    
    
    $(document).ready(function()
    {
     
    	$("#mail2").blur(function()
    	{
    		//remove all the class add the messagebox classes and start fading
    		$("#mail2message").removeClass().addClass('messagebox').text('Mail check').fadeIn("slow");
    		//check the username exists or not from ajax
    		$.post("register/mail_herhaal.php",{ mail:$('#mail').val(),mail2:$('#mail2').val() } ,function(data)
            {
    		  if(data=='no') //if username not avaiable
    		  {
    		  	$("#mail2message").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je mail adressen zijn niet identiek').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    		  
    		  
    else	if(data=='empty') //if username not avaiable
    		  {
    		  	$("#mail2message").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je moet wel wat invullen').addClass('messageboxerror').fadeTo(900,1);
    			});		
              } else
    		  	  {
    		  	$("#mail2message").fadeTo(200,0.1,function()  //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Je email adrres zijn gelijk').addClass('messageboxok').fadeTo(900,1);	
    			});
    		  }
    				
            });
     
    	});
    });
    
    
    $(document).ready(function()
    {
    
    
    
    
    
    
    	$("#mail").blur(function()
    	{
    		//remove all the class add the messagebox classes and start fading
    		$("#mailmessage").removeClass().addClass('messagebox').text('Kijken in de database').fadeIn("slow");
    		//check the username exists or not from ajax
    		$.post("register/mail_availability.php",{ user_name:$(this).val() } ,function(data)
            {
    		  if(data=='no') //if username not avaiable
    		  {
    		  	$("#mailmessage").fadeTo(200,0.1,function() //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Deze mail is al ingebruik').addClass('messageboxerror').fadeTo(900,1);
    			});		
              }
    else		  {
    		  	$("#mailmessage").fadeTo(200,0.1,function()  //start fading the messagebox
    			{ 
    			  //add message and change the class of the box and start fading
    			  $(this).html('Mail naam is nog niet in gebruik').addClass('messageboxok').fadeTo(900,1);	
    			});
    		  }
    				
            });
     
    	});
    });
    
    
     $(function(){
    							
    				var MyFirstVar = '<?php echo $_POST["username"]; ?>' ;
    
    
            $("#register_form").submit(function(){
    
    
                //remove all the class add the messagebox classes and start fading 
                $("#aangemeldtekst").removeClass().addClass("messagebox_form").text("Account aan maken").fadeIn(1400); 
                //check the username exists or not from ajax 
                $.ajax({
                    type: "POST",
                    url: "register/ajax_register.php",
                    data: "user_name=" + $("#username").val() + "&pass=" + $("#pass").val() + "&pass2=" + $("#pass2").val() + "&mail=" + $("#mail").val() + "&mail2=" + $("#mail2").val() + "&regels=" + $("#regels").val() + "&rand=" + Math.random(),
                    success: function(msg){
                        if(msg == "yes"){ //if correct login detail
                            $("#aangemeldtekst").fadeTo(200,0.1,function(){  //start fading the messagebox
                                //add message and change the class of the box and start fading
    														
    
    
    
    
    
    
                                $(this).html("Je bent zojuist aangemeld "+MyFirstVar+" Activeer je mail").addClass("messageboxok_form").fadeTo(900, 1, function(){
                                    //redirect to secure page
                                });
                            });
                        } else{
                            $("#aangemeldtekst").fadeTo(200, 0.1, function(){ //start fading the messagebox
                                //add message and change the class of the box and start fading
                                $(this).html("Je kon je niet aan melden probeer het opnieuw...").addClass("messageboxerror_form").fadeTo(900, 1);
                            });
                        }
                    }
                });
                return false; //not to post the  form physically 
            }); 
            //now call the ajax also focus move from  
            $("#register_form").blur(function(){
                $("#register_form").trigger("submit"); 
            }); 
        });
    </script>
    <style type="text/css">
    body {
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:11px;
    }
    .top {
    margin-bottom: 15px;
    }
    .messagebox{
    	position:absolute;
    	width:auto;
    	margin-left:30px;
    	border:1px solid #c93;
    	background:#ffc;
    	padding:3px;
    }
    .messageboxok{
    	position:absolute;
    	width:auto;
    	margin-left:30px;
    	border:1px solid #349534;
    	background:#C9FFCA;
    	padding:3px;
    	font-weight:bold;
    	color:#008000;
    	
    }
    .messageboxerror{
    	position:absolute;
    	width:auto;
    	margin-left:30px;
    	border:1px solid #CC0000;
    	background:#F7CBCA;
    	padding:3px;
    	font-weight:bold;
    	color:#CC0000;
    }
    
    
    .messagebox_form{
    	position:absolute;
    	width:auto;
    	border:1px solid #c93;
    	background:#ffc;
    	padding:3px;
    }
    .messageboxok_form{
    	position:absolute;
    	width:auto;
    	border:1px solid #349534;
    	background:#C9FFCA;
    	padding:3px;
    	font-weight:bold;
    	color:#008000;
    	
    }
    .messageboxerror_form{
    	position:absolute;
    	width:auto;
    	border:1px solid #CC0000;
    	background:#F7CBCA;
    	padding:3px;
    	font-weight:bold;
    	color:#CC0000;
    }
    
    
    </style>
    </head>
    <body>
    <form method="post" action="" id="register_form">
    
    
    <p>Welkom op true-crime Zin om mee te spelen meld je nu aan. <small>Let er op er komt een activatie link naar je mail</small></p>
    <div>
    <span id="aangemeldtekst" style="display:none"></span>
    
    
    <br><br><br>
    </div>
    
    
    <table >
       <td width="200">User Name :</td>  <td width="200"> <input name="username" type="text" id="username" value="" maxlength="15" /></td>
         <td width="200"><span id="msgbox" style="display:none"></span></td>
    </table>
    
    
    <table >
         <td width="200">Mail adres:</td>  <td width="200"> <input name="mail" type="text" id="mail" value="" maxlength="90" /></td>
        <td width="200"> <span id="mailmessage" style="display:none"></span></td>
    </table>
    
    
    <table >
         <td width="200">Herhaal Mail:</td>  <td width="200"> <input name="mail2" type="text" id="mail2" value="" maxlength="90" /></td>
        <td width="200"> <span id="mail2message" style="display:none"></span></td>
    </table>
    
    
    <table >
         <td width="200">Wachtwoord:</td>  <td width="200"> <input name="pass" type="password" id="pass" value="" maxlength="15" /></td>
        <td width="200"> <span id="passmessage" style="display:none"></span></td>
    </table>
    
    
    
    
    <table >
         <td width="200">Herhaal Pass:</td>  <td width="200"> <input name="pass2" type="password" id="pass2" value="" maxlength="15" /></td>
        <td width="200"> <span id="herhaalmessage" style="display:none"></span></td>
    </table>
    
    
    <table >
         <td width="400" align="left"><input name="regels" type="checkbox" id="regels" /> Accepteer de regels</td>
        <td width="200"> <span id="regelbericht" style="display:none"></span></td>
    </table>
    
    
    <table>
         <td col colspan="10" align="center"><input name="submit" type="submit" id="aanmelden_form" value="Maak account aan" /> </td>
    </table> 
    </form>
    Toon Meer


    Dit werkt;

  • Hulp met cron jobs

    • thexerox
    • 28 mei 2011 om 16:29

    Post het eens zodat we kunnen zien wat er mis is :)

  • Variables

    • thexerox
    • 28 mei 2011 om 16:28

    Je var moet binnen "$(document).ready(function()
    {" + op regel 8 staat een; teveel

  • Variables

    • thexerox
    • 28 mei 2011 om 16:24

    post je volledige script eens :)

  • Variables

    • thexerox
    • 28 mei 2011 om 16:17
    PHP
    <script type="text/javascript">
    var MyFirstVar = <?php echo 'Hier komt mijn eerste var'; ?> ;
    $(this).html("Je bent zojuist aangemeld "+MyFirstVar+" Activeer je mail").addClass("messageboxok_form").fadeTo(900, 1, function(){ 
    </script>
  • Variables

    • thexerox
    • 28 mei 2011 om 16:12

    Ja zeker :)

    Bv:

    PHP
    <script type="text/javascript">
    var MyFirstVar = <?php echo 'Hier komt mijn eerste var'; ?> ;
    </script>
  • Eeerste layout

    • thexerox
    • 28 mei 2011 om 02:08
    PHP
    Cijver: 6/10
    Tips: Probeer meer variatie te brengen in je layout. Zowel qua kleuren, layout,...; Zorg ervoor dat je titels dynamische afbeeldingen worden.
    
    
    Pluspunten: Mooi begin...
    Minppunten: Afbeeldingen niet uitrekken, Probeer font's te gebruiken die bij elkaar passen, logo is nogal heel old-skool.

    Veel oefenen is de boodschap, maar je bent op de goede weg :)

  • Web layout

    • thexerox
    • 28 mei 2011 om 02:00

    cijfer: 7/10
    tips: Probeer minder tekst te gebruiken. Afbeeldingen zegen soms zoveel meer.
    Plus: Mooi als je nog niet lang met PS bezig bent. Mooi ordening.
    Min: Extra menu is echt wel veel te groot. Probeer dit op te delen in meerdere menu's :)

  • Potentiele websites

    • thexerox
    • 28 mei 2011 om 01:49

    Geen probleem!

    De randomspel.be source komt snel ook als download. Dan laat ik wel iets weten :)

  • Icoon of plaatje

    • thexerox
    • 27 mei 2011 om 15:27

    Hier zijn nog enkele ballonnen -> http://www.iconarchive.com/search?q=baloon

    Dit zou ook nog iets kunnen zijn. Wordt vaak gebruikt om een evenementen kalender voor te stellen -> http://www.iconarchive.com/search?q=event

  • Potentiele websites

    • thexerox
    • 27 mei 2011 om 15:25

    Script van randomspel.be. Ik geef het binnenkort uit onder de GNU General Public License v3.0.

    Het script FacebookAlbumGrabber heeft ook potentie. Is ondertussen door mezelf ook uitgegeven onder de GNU General Public License v3.0.

    Script pagina (Tijdelijk offline) ->http://thexeroxprojects.be/portfolio/21/F…rabber+0+1.html
    Voorbeeld -> http://thexeroxprojects.be/samples/php/fa…bber/sample.php
    Download ->http://thexeroxprojects.be/samples/php/fa…mGrabber0.1.rar

    Hopelijk ben je er iets mee :)

  • Icoon of plaatje

    • thexerox
    • 27 mei 2011 om 15:16

    Je zou iets kunnen doen met een instrument of een dansende man.
    -> http://www.iconarchive.com/category/music-icons.html
    Daar vind je zeker wel wat :)

    Dit kan mss ook iets zijn. Hangt er vanaf voor wat een soort evenement het is..
    -> http://www.iconarchive.com/show/green-emo…party-icon.html

  • OS Banditi inlog fout?

    • thexerox
    • 26 mei 2011 om 19:24

    Mss wordt er geen sessie aangemaakt of haal je de verkeerde gegevens op. Post je login script & je controle script eens :)

  • MSN doet raar

    • thexerox
    • 26 mei 2011 om 14:12

    Gebruik Pidgin als client IPV de officieele MSN client

  • FBalbumGRABBER

    • thexerox
    • 25 mei 2011 om 14:00

    Suggesties?

  • FBalbumGRABBER

    • thexerox
    • 24 mei 2011 om 22:13

    Nu zou hij moeten werken!

  • FBalbumGRABBER

    • thexerox
    • 24 mei 2011 om 22:08

    Beste CriminalspointLeden,

    Ik heb zonet versie 0.1 van mijn PHP class "FacebookAlbumGrabber" uitgebracht onder de GNU General Public License 3.

    Deze class haalt je facebook albums en foto's op en plaats ze in je locale database.

    Graag had ik jullie Feedback over eventuele verbeteringen, suggesties, enz...

    De classpagina kan je hier bekijken :
    Klik

    Online demo & download is daar beschikbaar.
    Handleiding komt snel online!

    Alvast bedankt!
    Groeten,
    Tim

  • Slicer Gezocht

    • thexerox
    • 23 mei 2011 om 21:07

    Even offtopic: Ik vindt de layout nogal hard lijken op die van Netlog ... :s
    +
    Slice voor ?120,00 tegen 10 juni

  • Pokemon online activatie beta

    • thexerox
    • 22 mei 2011 om 18:48

    Mijn IP ontvangen via PM

  • Promotie sites

    • thexerox
    • 16 mei 2011 om 23:01

    gamesites.be

ICT Nieuws

  • Samsung zal miljoenen verdienen aan Apple iPhone Fold dankzij zijn 12GB RAM

    ICTscripters 11 maart 2026 om 22:42
  • Apple heeft zojuist iOS 26.4 Beta 4 vrijgegeven: hier is de verwachte lanceerdatum.

    ICTscripters 11 maart 2026 om 12:01
  • Kritieke kwetsbaarheid in Nginx UI bedreigt gevoelige data

    ICTscripters 10 maart 2026 om 18:29

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design