Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K

12 Posted Topics

Member Avatar for Webville312

As for encryption i would personally use md5 and a salt. [code] <?php $user = "webville123"; $pass = "rockzorz"; $salt = "skkgf4dfg!"; $enc_pass = md5(md5($user . $pass) . $salt); ?> [/code]

Member Avatar for Dini_1
0
17K
Member Avatar for nadskap2

Hi there, DaniWeb. I have been struggling with this one for a while. How do i write a regexp that matches every {$*} wherein * is wildcard. I have written one: /\{\$(.*)\}/ and it works fine at regexpal.com, but not with my preg_replace:( [code] <?php $string = "Hello {$name}! How …

Member Avatar for Member #120589
0
141
Member Avatar for nadskap2

Hello there DaniWeb. I REALLY hope you can help me in this case :( else i cant get to use my PC. Well, some days ago, i went into my PC and cleared up some partitions etc so i could have more space on some of my others. So i …

Member Avatar for makman99
0
280
Member Avatar for nadskap2

Hey there! I really need help with this problem. I have just ordered a new video card, HD 5750 to replace my old one (8800GT) and it should work fine. My old card was able to run GTA IV fine in low settings. And everybody knows HD 5750 is better …

Member Avatar for nadskap2
0
138
Member Avatar for nadskap2

Hey there, recently i bought a Club3D Radeon HD5750 to replace my broken SPARKLE GeForce 8800GT. And today it came, i installed it as it said in manual, plugged power to the card (My power is on 580W so thats not the problem) My monitor is a CRT/VGA monitor, which …

Member Avatar for nadskap2
0
105
Member Avatar for nadskap2

Hi there everybody! I have a PC which i was pretty happy for, it had Windows Vista on it. But then one day when i turned on the computer, it wouldn't boot up Vista. It came to that part where it shows that loading bar: [code] ___________________ | |||| |||| …

Member Avatar for nadskap2
0
205
Member Avatar for nadskap2

Hey there DaniWeb, Recently i found out that there was a thing that didn't work in my CMS. Code (index.php): [code] <body onLoad=\"javascript:loadManageNews();loadManageNav();loadMCE();\"> (in a PHP file) [/code] Issue: It calls the loadManageNews() function just finse but it doesn't call the loadManageNav(). It also loads the loadMCE() function just fine. …

Member Avatar for Airshow
0
99
Member Avatar for nadskap2

Hey there DaniWeb. I've got some problems with a website i made ([url]http://bstagdaekning.dk[/url]) Look at this page: [url]http://bstagdaekning.dk/?p=14[/url] i need it to retrieve Æ, Ø and Å on every part of the page :( anybody can help?

Member Avatar for Member #334542
0
111
Member Avatar for nadskap2

Hey there everybody! Me and a couple of others are currently making a CMS but we got a problem :( Here is the code: [code=php] function ImportSQL() { $conn = mysql_connect($_POST['host'] . ":" . $_POST['port'], $_POST['user'], $_POST['pass']); mysql_select_db($_POST['vision_db'], $conn); $db_content = @file_get_contents("../sql/Database.sql"); $query = mysql_query($db_content); if(!$query){ return mysql_error(); }else{ return …

Member Avatar for Excizted
0
208
Member Avatar for nadskap2

Hey there... I got a website which i want to work properly... But i cant make it work properly without image popup working properly... PHP and HTML code: [code] <?php if ($handle = opendir('./bsbilleder')) { while (false !== ($file = readdir($handle))) { if(substr($file, 0, 1) != ".") { $bspic = …

0
82
Member Avatar for nadskap2

Hey... I've got some problems with jQuery. Code: jQuery: [code] <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".bspicdiv").animate({height:0},"fast"); $(".bspicdiv").animate({width:0},"fast"); $(".bspic").click(function(){ $("#box").animate({height:500},"fast"); $("#box").animate({width:500},"fast"); $(".bspicclose").click(function(){ $(".bspicdiv").animate({height:0},"fast"); $(".bspicdiv").animate({width:0},"fast"); }); }); }); </script> [/code] PHP/HTML: [code] echo "<a class=\"bspic\" href=\"#\"><img border=\"0\" src=\"./bsbilleder/".$file."\" height=\"80\" width=\"80\" /></a>"; echo "<div class=\"bspicdiv\"><a href=\"#\" class=\"bspicclose\"><img border=\"0\" src=\"./bsbilleder/".$file."\" height=\"450px\" width=\"450px\" /></a></div>"; …

0
78
Member Avatar for nadskap2

Hello there members of DaniWeb :) Im making a website for my father but suddenly an error came up :( Error: Parse error: syntax error, unexpected '(' on line 44 Code: $first = true; $include_file = "./inc/acp.php"; foreach($_GET as $key => $value) { $include_file .= (($first)?("?")("&")) . $key . "=" …

Member Avatar for almostbob
0
87

The End.