dreamwest
Members-
Posts
1,223 -
Joined
-
Last visited
Never
Everything posted by dreamwest
-
Get some guys from scriptlance to do some content building and promotion for you for around $100 you can get a good start
-
if statement inside if statement not working
dreamwest replied to HDFilmMaker2112's topic in PHP Coding Help
if($_POST['username'] && $_POST['password']){ $_SESSION['username']=$_POST['username']; $_SESSION['password']=$_POST['password']; } aka if both $_POST username and password have a value, set the sessions -
Want my function to return one dimensional array.
dreamwest replied to Nuv's topic in PHP Coding Help
Take the brackets away, because $array['lchild'] is a string $child = array($array['lchild']); print_r($child); //output example: array( [0] => 3632873 ) -
http://www.wizecho.com/nav=php&s=class
-
I just copied wiki for my urls eg, http://site.com/videos/funny_videos_online If your using smarty 3 is even simpler http://site.com/videos/{$var|seo:'0'}
-
$return[] isnt a data map function sql_read( $dbname,$dbusername,$dbpassword ) { $names = array(); $password = array(); $connect = @mysql_connect("mysql11.000webhost.com",$dbusername,$dbpassword) or die("Could Not Connect"); @mysql_select_db ($dbname) or die("Could not find DataBase"); $query = mysql_query("select * from users"); $numrows = mysql_num_rows($query); if ($numrows > 0){ while($row = mysql_fetch_assoc($query)){ $names[] = $row["uname"]; $password[] = $row["password"]; $id = $row["id"]; } $return = array($names,$password,$id); }else{ $return = array(); } return $return; } $names = array(); $names = sql_read("XXXXXX","XXXXXX","XXXXXXX")[0];
-
your intelligence blows my mind, its like your a guru.....can I ask mr. guru, "whats the meaning of your life?"
-
I have this cipher for a magnet arrangement, can someone crack it?? 707-28 1009-9-6 420/6 1434-30/1 322@7 1819=4-5 95+3=18 431>8 KEY 739/Y4681+UU312/1J000(766HH DKEY) 6/12/LLL394H3M
-
Finally finished the house i got for virtually nothing http://www.youtube.com/watch?v=iopJXTdpCDM
-
was a joke...anyway dont u find this post sexy?
-
Use triggers and E_RECOVERABLE_ERROR or E_ERROR http://www.wizecho.com/nav=php&s=errors
-
i find this post hard to masturbate to
-
What is the best way to protect your mysql login details?
dreamwest replied to wright67uk's topic in PHP Coding Help
Have your config files in a include directory and redirect the browser away to the domain, include() will still pull the files from anywhere really RewriteRule ^include/(.*) http://www.site.com Or better yet put it outside the browsers reach /home/html/site.com/ *this is the site /home/includes/ *this is where you sensitive files are -
Its alot easier to use SET instead of VALUES, because you can see which field is what. mysql_query ("INSERT INTO `business` SET `Name`='{$Name}' , `Type`='{$drop}', `Subtype`='{$tier_two}', `Phone`='{$Phone}', `Email`='{$Email}', `Postcode`='{$Postcode}', `Web Address`='{$Website}' ")or die(mysql_error());
-
Something like this? $res = mysql_query("SELECT *,`es_title` as `title` FROM `table` LIMIT 3 ");
-
Ive drawn some database info but i need to change one key value while ($new = mysql_fetch_assoc($res)){ $latest[] = $new; } print_r($latest); which prints: Array ( [0] => Array ( [id] => 1063636 [vid] => 41321 [es_title] => another title ) [1] => Array ( [id] => 1063635 [vid] => 02003 [es_title] => another title ) [2] => Array ( [id] => 1063634 [vid] => 51605 [es_title] => another title ) ) How can i replace [es_title] with just [title] so it looks like this Array ( [0] => Array ( [id] => 1063636 [vid] => 41321 [title] => another title ) [1] => Array ( [id] => 1063635 [vid] => 02003 [title] => another title ) [2] => Array ( [id] => 1063634 [vid] => 51605 [title] => another title ) )
-
*edit actually the id is coming back as 34//34
-
It works. But its also taking the first $1 from each rewrite Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^site.com [NC] RewriteRule (.*)$ http://www.site.com/$1 [L,R=301] RewriteCond %{HTTP_HOST} !^www\.site.com RewriteCond %{HTTP_HOST} ^(ja|es|it|ar|pt|fr|de|hi|cn)\.site.com RewriteRule ^(.*)$ $1?lang=%1 [QSA] RewriteRule ^play/(.*)/(.*) index.php?nav=play&id=$1&t=$2 [L,QSA] So: http://ja.site.com/play/34/fun The id comes back as "ja" but it should be "34"
-
Ignore my last code this is what i have Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^site.com [NC] RewriteRule (.*)$ http://www.site.com/$1 [L,R=301] RewriteCond %{HTTP_HOST} !^www\.site.com RewriteCond %{HTTP_HOST} ([^.]+)\.site.com RewriteRule ^(.*)$ index.php?lang=%1 # Main pages RewriteRule ^view/(.*)/(.*) index.php?nav=play&id=$1&t=$2 [L,QSA]
-
Problem with loop using php and mysql
dreamwest replied to mr.web_developer's topic in PHP Coding Help
Is this smarty templates?? Normally you would store the data as an array then assign it PHP: $e = mysql_query("select Requster_Name from request"); while ($row = mysql_fetch_assoc($e)) { //extract($row); $RN[] = $row[‘Requster_Name’]; } $easy->assign("RN", $RN); $easy->display("TEMPLATE.tpl"); -
Problem with loop using php and mysql
dreamwest replied to mr.web_developer's topic in PHP Coding Help
*blank -
ive set up subdomain rewrite as follows, the only problem is none of the other rewites work on the subdomian Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^site.com [NC] RewriteRule (.*)$ http://www.site.com/$1 [L,R=301] RewriteCond %{HTTP_HOST} !^www\.site.com RewriteCond %{HTTP_HOST} ([^.]+)\.site.com RewriteRule ^(.*)$ /home/site.com/index.php?lang=%1 # Main pages RewriteRule ^$ index.php RewriteRule ^view=(.*) index.php RewriteRule ^sort=(.*) index.php RewriteRule ^page=(.*) index.php So if i go to http://www.site.com/view=1 it works but if i go to http://es.site.com/view=1 it only shows the main page aka http://es.site.com
-
echo pow(3, 10);