• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • 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. Forum
  3. Scripting & programmeren
  4. (X)HTML + XML + CSS

Forum

  • Beta-testers gezocht voor Crypto-oefenplatform

    Syntax 29 januari 2026 om 16:11
  • Na 15 jaar terug van weggeweest: iCriminals.nl is terug (BETA)!

    Syntax 19 januari 2026 om 09:34
  • Developer Gezocht

    Mikevdk 10 januari 2026 om 18: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
  • Help testers nodig voor android app Urgent

    urgentotservices 26 september 2025 om 10:21
  • Versio vervanger

    Jeroen.G 25 augustus 2025 om 15:56
  • Afspraken systeem met planbeperking

    Lijno 1 augustus 2025 om 23:04

Marktplaats

  • 350 Nieuwe Domeinnamen Januari 2026

    shiga 1 februari 2026 om 14:21
  • 321 Nieuwe Domeinnamen December 2025

    shiga 1 januari 2026 om 10:26
  • Meerdere mafia game template te koop

    Syntax 26 december 2025 om 00:07

Register

  • arendjee
  • 28 mei 2011 om 00:57
  • arendjee
    :haha:
    Berichten
    478
    • 28 mei 2011 om 00:57
    • #1

    Goede dag cp leden ik ben bezig met een register script in javascript maar hij doet alles goed behalve 1 klein ding

    PHP
    $(document).ready(function()
    {
    	$("#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
    		$.post("register/ajax_register.php",{ user_name:$('#username').val(),pass:$('#pass').val(),pass2:$('#pass2').val(),mail:$('#mail').val(),mail2:$('#mail2').val(),regels:$('#regels').val(),rand:Math.random() } ,function(data)
            {
    		  if(data=='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 <?=$_POST['username'];?>  Acctiveer 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');
    	});
    });
    Toon Meer

    Hij laat de ingevoerde naam niet zien bij de melding

    True-Crime V1:
    Outgame: 0%
    Ingame: 0%
    Talen: 0%
    Teksten: 0%

  • Guest, wil je besparen op je domeinnamen? (ad)
  • arendjee
    :haha:
    Berichten
    478
    • 28 mei 2011 om 01:03
    • #2

    :slotje::$ der kan slotje op :S zie het probleem al ben een else vergeten :$
    this ook al laat denk egt bed tijd :$

    Nieuwe reactie samengevoegd met originele reactie op 28.05.11 03:30:54:
    Ik heb een ander probleem dus heb die vervangen voor de oude :)

    True-Crime V1:
    Outgame: 0%
    Ingame: 0%
    Talen: 0%
    Teksten: 0%

  • L.Groot
    Elite members
    Ontvangen Reacties
    31
    Berichten
    4.888
    • 28 mei 2011 om 08:53
    • #3

    Je weet dat dit jQuery is en géén JavaScript?
    Daarnaast heb je alles wel een beetje slecht geprogrammeerd, zie mijn verbeter code:

    PHP
    <script type="text/javascript">
    	$(function(){
    		$("#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 " + $("#username").val() + ". 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>
    Toon Meer

    Als het goed is moet die werken.
    Denk voortaan aan het volgende:
    - Netjes intabben GEEN spaties!
    - Accolades op dezelfde regel om verwarring te voorkomen
    - Gebruik één type quotes voor JavaScript / jQuery (ik raad de dubbele aan)
    - Gebruik spaties na een nieuwe parameter (dus niet 2,3,3,4 maar 2, 3, 3, 4)
    - Gebruik op het begin $(function(){ i.p.v.
    $(document).ready(function(){
    - Geef bij een Ajax request ALTIJD alle parameters op, hoe ik de request er nu in heb gezet is de juiste manier.

    Succes ermee.

  • arendjee
    :haha:
    Berichten
    478
    • 28 mei 2011 om 15:14
    • #4

    Thnx lars ik ga der mee verder :)

    Nieuwe reactie samengevoegd met originele reactie op 28.05.11 16:12:02:
    Je bent zojuist aangemeld Acctiveer je mail
    blijft die aangeven

    True-Crime V1:
    Outgame: 0%
    Ingame: 0%
    Talen: 0%
    Teksten: 0%

  • L.Groot
    Elite members
    Ontvangen Reacties
    31
    Berichten
    4.888
    • 28 mei 2011 om 17:14
    • #5

    Dan is het de fout van jouw PHP script ;).
    Die moet namelijk "yes" als output geven. Als dat script altijd yes als output geeft zal je altijd die melding ontvangen.

  • arendjee
    :haha:
    Berichten
    478
    • 28 mei 2011 om 17:18
    • #6

    neej de php is goed;)
    maar hij geeft de naam die ingevoert is niet aan :)
    dat bedoel ik :)

    True-Crime V1:
    Outgame: 0%
    Ingame: 0%
    Talen: 0%
    Teksten: 0%

  • L.Groot
    Elite members
    Ontvangen Reacties
    31
    Berichten
    4.888
    • 28 mei 2011 om 17:51
    • #7

    Heb je wel een veld met als id username?
    Geef anders je hele script incl. PHP eens.

  • ismail123
    Advanced programmer.
    Ontvangen Reacties
    20
    Berichten
    678
    • 28 mei 2011 om 17:54
    • #8

    @L.groot's 1e post jquery is javascript 8-)(een library ervan)

    Met vriendelijke groet,
    Ismail
    enthousiaste game developer

  • arendjee
    :haha:
    Berichten
    478
    • 28 mei 2011 om 17:56
    • #9

    This maar een test script hoor zodra het werkt word het omgezet naar database dingen etc

    ajax_register.php

    PHP
    <?php
    $existing_users=array('roshan','mike','jason'); 
    $user_name=$_POST['user_name'];
    $existing_mail=array('[email protected]','[email protected]','[email protected]'); 
    $mail_name=$_POST['mail'];
    $regel = $_POST['regels'];
    
    
    if ($_POST['pass'] != $_POST['pass2'])
    {
    	echo "no";
    }elseif ($_POST['mail'] != $_POST['mail2'])
    {
    	echo "no";
    }elseif (in_array($user_name, $existing_users))
    {
    	//user name is not availble
    
    
    	echo "no";
    }elseif (in_array($mail_name, $existing_mail))
    {
    	//user name is not availble
    	echo "no";
    }elseif(empty($regel))
    {
    	echo "no";
    }else
    
    
    {
    
    
    	echo "yes";
    }
    
    
    
    
    ?>
    Toon Meer

    Verder ik weet het kan makkelijker maar het is meer om te testen eerst zodat ik het onder de knie heb als het werkt schrijf ik het helemaal over om korter / makkelijker t emaken

    register.php

    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 = 'onbekende' ;
    
    
            $("#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

    True-Crime V1:
    Outgame: 0%
    Ingame: 0%
    Talen: 0%
    Teksten: 0%

  • NielsB
    Junior (Web)Developer
    Berichten
    948
    • 28 mei 2011 om 19:04
    • #10

    Lars ik vind het leuk en aardig maar probeer niet gelijk tek rijgen met die punten van je:
    Als het goed is moet die werken.
    Denk voortaan aan het volgende:
    - Netjes intabben GEEN spaties!
    - Accolades op dezelfde regel om verwarring te voorkomen
    - Gebruik één type quotes voor JavaScript / jQuery (ik raad de dubbele aan)
    - Gebruik spaties na een nieuwe parameter (dus niet 2,3,3,4 maar 2, 3, 3, 4)
    - Gebruik op het begin $(function(){ i.p.v.
    $(document).ready(function(){
    - Geef bij een Ajax request ALTIJD alle parameters op, hoe ik de request er nu in heb gezet is de juiste manier.

    Het is de manier hoe je het zelf wilt doen en wat jij makkelijker vind, ga niet beweren dat je MOET intabben MOET accolades opzelfde regel neerzetten.

    PLEASE STOP!

    School
    Tweedejaars Informatica Student @ Hogeschool Rotterdam.

    Webtalen
    - PHP ( OOP )
    - SQL
    - JavaScript i.c.m. jQuery framework
    - (x)HTML
    - CSS
    - Actionscript
    - XML

    Programmeertalen
    - Java
    - C#
    - Ruby i.c.m. on Rails framework

  • arendjee
    :haha:
    Berichten
    478
    • 28 mei 2011 om 20:22
    • #11
    Citaat van L.Groot

    Heb je wel een veld met als id username?
    Geef anders je hele script incl. PHP eens.


    hij showt gwn de "post " niet>.< als ik bijvoorbeeld bij die var onbekend zet laat die wel zien ..

    True-Crime V1:
    Outgame: 0%
    Ingame: 0%
    Talen: 0%
    Teksten: 0%

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

ICT Nieuws

  • Fijne feestdagen

    tcbhome 28 december 2025 om 13:55
  • Kritieke update voor Really Simple Security-plug-in

    K.Rens 16 november 2024 om 16:12
  • ING Nederland streeft naar ondersteuning van Google Pay tegen eind februari

    K.Rens 2 november 2024 om 16:09

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

Gebruikers die dit topic bekijken

  • 2 Gasten
  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