
halfman
Members-
Posts
61 -
Joined
-
Last visited
Never
Everything posted by halfman
-
Mate there are different major problems in here not only with the codes but also with the logics. Can you first let me know what exactly you want to do in that page, maybe your approach is wrong, we can work on your approach, then we can fix the logics and make a cleaner code with less bugs. Writing code is the easiest bit if you get the structue right. I would suggest write down all the steps that you want your user to follow, post them though then we can find the best solution. (Basic Flowchart is very handy!!) How is it sound? If you need just to know about the loop, go to php.net and look for "foeach, for, while" they are all loops and relatively easy to use.
-
I found this for you, hopefuly it helps: A novice hacker could write something in the url like : mypage?somebloodyfile=http://domain2/code.txt and in the http://domain2/code.txt he/she can have a message showing : Hacked by a bloody hacker. So whats the solution. Here is how it should be done. Complicated Way to solve: … html header … <?php //list of valid pages $pages=array(”games/index.html”, “news/news.html”, “games/1.html”); //check $page variable $valid=false; for ($i=0; $i<sizeof($pages) || !$valid; $i++) { if ($page==$page[$i]) { $valid=true; } } if ($valid) include($page); if (!$valid) include($pages[0]); // include the first page if not valid ?> … html footer … Alternate but easy way: … html header … <?php $invalidChars=array(”/”,”.”,”\\”,”\”",”;”,”http“,”:”,”!”,”*”,”&”); $page=str_replace($invalidChars,”",$page); include (”pages/”.$page.”.html”); ?> … html footer … Reference: http://zakariarouf.wordpress.com/2007/12/05/url-injection-hacking-website-taking-control-php/
-
Converting a Multi-dimensional Array Structure
halfman replied to bannock's topic in PHP Coding Help
Try this I have got this from http://us3.php.net/manual/en/function.array-values.php <?php function array_flatten($array, $preserve = FALSE, $r = array()){ foreach($array as $key => $value){ if (is_array($value)){ foreach($value as $k => $v){ if (is_array($v)) { $tmp = $v; unset($value[$k]); } } if ($preserve) $r[$key] = $value; else $r[] = $value; } } $r = isset($tmp) ? array_flatten($tmp, $preserve, $r) : $r; return $r; } print_r($tmp); /* --- Array ( [home] => Array ( [id] => 1 [pid] => 0 [link] => home [subcat] => ) [works] => Array ( [id] => 2 [pid] => 0 [link] => works [subcat] => Array ( [viz] => Array ( [id] => 4 [pid] => 2 [link] => viz [subcat] => ) [script] => Array ( [id] => 5 [pid] => 2 [link] => script [subcat] => Array ( [arch] => Array ( [id] => 6 [pid] => 5 [link] => arch [subcat] => ) ) ) ) ) [blog] => Array ( [id] => 3 [pid] => 0 [link] => blog [subcat] => ) ) --- */ print_r(array_flatten($tmp, 1)); /* --- Array ( [home] => Array ( [id] => 1 [pid] => 0 [link] => home [subcat] => ) [works] => Array ( [id] => 2 [pid] => 0 [link] => works ) [blog] => Array ( [id] => 3 [pid] => 0 [link] => blog [subcat] => ) [viz] => Array ( [id] => 4 [pid] => 2 [link] => viz [subcat] => ) [script] => Array ( [id] => 5 [pid] => 2 [link] => script ) [arch] => Array ( [id] => 6 [pid] => 5 [link] => arch [subcat] => ) ) --- */ ?> -
Let me know how to are going, I like your project. To tell you the truth I like Drupal just because it uses jQuery, and very easy to use however I have developed most of my clients websites in Joomla and I found it easier to work with. Let me know how your project going, and let me know if you need any help. I like your project idea. Cheers
-
dont give up mate. I am sure we can help you as the forum has been made for this, so we can share and help eachother. If still want us to help you then just let me know, I would be happy to help you out mate. Email me you code if you like and let me know what you try to achievr, or draw a flowchart and I see if I can be helpful. Cheers
-
you need to change this <input type="submit" name="remove" value="Remove Avatar"> to <input type="button" name="remove" value="Remove Avatar" onclick ="Put the javascript in here"> or make another form that passes the id to remove or update the databse as 1 form shouldnot have 2 submit buttons. you are confusing the HTML ??
-
Not that I know of, unless someone upload a file on your server that trigger an action then yes it is possible.
-
No worries mate
-
my bad, Cant you do this: mysql_query("UPDATE ibf_members SET avatar='25', fieldName2 = 'value' WHERE id={$ibforums->member['id']}"); If not then I am not following your problem and I need a bit more info on that.
-
I have replied to this, have no idea what happend to it, I ll do it again you need to rationalise your code first, you need to have one submit button for all the stacks. anyhow check the below code <?php session_start(); ?> <pre> <?php print_r($_POST); ?> </pre> <?php $add = $_GET['add']; if (isset($add)) { if (empty($_SESSION['username'])) { $_SESSION['username'] = ""; } } ?> <p align='right'><input type='button' name='add' value='add' onClick="parent.location=('<?php $_SERVER['PHP_SELF']; ?>?add=add')"></p> <?php if (isset($_SESSION['username'])){ if (empty($_SESSION['stack'])) { $_SESSION['stack'] = ""; } $i = 0; if(isset($add)){ $i = $_SESSION['i']; $_SESSION['stack'][$i] = " <font color=white>Welcome, ".$_SESSION['username']."!<br><a href='Logout.php'>Log Out</a></font> <form enctype='multipart/form-data' action='index.php' method='post' name='changer'> <p align='center'> <input name='image[$i]' value='image' type='text'> <br> <input type='text' name='hyperlink[$i]'value='hyperlink'> <br> <input type='text' name='currency[$i]' value='currency'> <br> <input type='text' name='name[$i]' value='name'> <br> <input type='text' name='info[$i]' value='info'> <br> <input type='text' name='keywords[$i]' value='keywords'> <br> <input type='text' name='type[$i]' value='type'> <br> <input type='submit' value='Submit'><br></p>"; $_SESSION['i'] += 1; } else { $_SESSION['stack'][$i] = "you have not pressed add yet."; } } else { $_SESSION['stack'][$i] = "You must be logged in!"; } foreach ($_SESSION['stack'] as $key => $val){ echo $_SESSION['stack'][$key]; } ?> run this and you will get the array on top, you need to write a loop (foreach or while) array to extract the data the dump result is something like this Array ( [image] => Array ( [0] => image [1] => image ) [hyperlink] => Array ( [0] => hyperlink [1] => hyperlink ) [currency] => Array ( [0] => currency [1] => currency ) [name] => Array ( [0] => name [1] => name ) [info] => Array ( [0] => info [1] => info ) [keywords] => Array ( [0] => keywords [1] => keywords ) [type] => Array ( [0] => type [1] => type ) )
-
Mate the logics behind your code is wrong: If you have got different stack you need to have only one submit button any how this will be your out put: I have got the below result after pressing the 2 different submit first you need to rathionalise your proccedure then code or it will take you forever to fix every single problem: <?php session_start(); ?> <pre> <?php print_r($_POST); ?> </pre> <?php $add = $_GET['add']; if (isset($add)) { if (empty($_SESSION['username'])) { $_SESSION['username'] = ""; } } ?> <p align='right'><input type='button' name='add' value='add' onClick="parent.location=('<?php $_SERVER['PHP_SELF']; ?>?add=add')"></p> <?php if (isset($_SESSION['username'])){ if (empty($_SESSION['stack'])) { $_SESSION['stack'] = ""; } $i = 0; if(isset($add)){ $i = $_SESSION['i']; $_SESSION['stack'][$i] = " <font color=white>Welcome, ".$_SESSION['username']."!<br><a href='Logout.php'>Log Out</a></font> <form enctype='multipart/form-data' action='index.php' method='post' name='changer'> <p align='center'> <input name='image[$i]' value='image' type='text'> <br> <input type='text' name='hyperlink[$i]'value='hyperlink'> <br> <input type='text' name='currency[$i]' value='currency'> <br> <input type='text' name='name[$i]' value='name'> <br> <input type='text' name='info[$i]' value='info'> <br> <input type='text' name='keywords[$i]' value='keywords'> <br> <input type='text' name='type[$i]' value='type'> <br> <input type='submit' value='Submit'><br></p>"; $_SESSION['i'] += 1; } else { $_SESSION['stack'][$i] = "you have not pressed add yet."; } } else { $_SESSION['stack'][$i] = "You must be logged in!"; } foreach ($_SESSION['stack'] as $key => $val){ echo $_SESSION['stack'][$key]; } ?> Response is: Array ( [image] => Array ( [0] => image [1] => image ) [hyperlink] => Array ( [0] => hyperlink [1] => hyperlink ) [currency] => Array ( [0] => currency [1] => currency ) [name] => Array ( [0] => name [1] => name ) [info] => Array ( [0] => info [1] => info ) [keywords] => Array ( [0] => keywords [1] => keywords ) [type] => Array ( [0] => type [1] => type ) )
-
Use Joomla with the Community Builder.
-
Ofcourse because they all have same name at the end of the each field add [] like <input type="text" name ="fieldName[]" value="" > then you will get the array of the values inside the [] you can put the $i so you know the reference. Cheers
-
Best way to create serverside email with multiple fields?
halfman replied to TEC Rhyno's topic in PHP Coding Help
I would suggest using $_SESSION as it is faster than sending data to DB and it is safer. collect them in the session variable and at the end insert them in DB or in a text file to have a copy on the server and email them to your email address. -
Try this mate: <?php foreach ($_POST['estimatedDelivery'] as $key => $val) { // KEY WILL BE THE ID AND VAL IS THE VALUE OF EACH POST // your update script will be :: UPDATE tableName SET estimatedDelivery = '".$val."' WHERE id = '".$key."' } ?> <form action='process.php' method='post'> <?php while($row = mysql_fetch_array($result)) { $date2 = $row['estimatedDelivery'];; $timestamp2 = strtotime($date2); $new_date2 = date("d-m-Y",$timestamp2); echo "<td> <input type='text' name='estimatedDelivery[".$id."]' value=".$new_date2."></td>"; //use array if you want to send multiple values for one variable name then use foreach or while to extract the variable name and values } echo "<input type='submit' name='submit' value='Submit updated delivery dates'></form>"; ?>
-
use SET if you have a 0 or 1 value or 'yes','no' - it takes less memory, Type will be SET, and Value will be '1','0' and default value will be 1 OR Type will be SET, and Value will be 'Y','N' and default value will be Y Check this document: http://www.vbmysql.com/articles/mysql/the-mysql-set-datatype
-
I think the logics in this code has problem. please review the steps. I am not following your code, it is a bit unclear I have cleaned it a bit: <?php $genre = $_POST["genre"]; if ($w == "dj") { $target = "$djdir"; } else { $target = "$artdir"; } $file = basename( $_FILES['uploaded']['name']); $count = 0; // WHAT IS THIS BLOCK FOR $rs2 = mysql_query("SELECT * FROM upload"); $count = mysql_num_rows($rs2); do { $file = str_replace(' ', '_', $file, $count); } while ($count); //------------------------------------- $target = $target.$file ; $ok=1; echo "This is our limit file type condition"; if (!($uploaded_type=="audio/mpeg")) { echo "You may only upload MP3 files.<br>"; $ok=0; } //This is our size condition if ($uploaded_size > 10240000) // 10 MB { $error = $error . "Your file is too large.<br>"; $ok=0; } if ($ok==0) { echo "$error"; } else { if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target)){ for ($i = 0; $i < $count; $i++) { $ufile = mysql_result($rs2, $i, 'file'); // WHY DO YOU NEED THIS if ($ufile == $file) { mysql_query("UPDATE upload set (file, date, name, genre) values ('$file','$date','$username','$genre') where file='$file'"); $done = 'true'; echo "The file $file has been updated"; $insert = 0;} else { $insert = 1; } } if ($insert == 1) { mysql_query("INSERT INTO upload (file, date, name, genre) values ('$file','$date','$username','$genre')"); echo "The file $file has been uploaded"; } } else { echo "Sorry, there was a problem uploading your file."; } } } // WHERE IS THIS ONE STARTED ? ?>
-
I am not sure what you want to do but I think you should be able to use AND or pass the field name and tablename from another table in your db as variables.
-
check the fields in your mysql, try to run your sql directly from mysql and see the result. Do this $sql4 = "SELECT * FROM image WHERE FK_OB_ID = $Obituary_ID AND `Default` = 1"; Check the case in Default, because the word Default is kind of reserved for mysql you need to clarify it like using order as one of your field. Use `Default` = 1 and see what will happen.
-
No worries mate, If you stuck just post your problem I will try to figure it out for your problem Good luck Cheers
-
mate this is the worst way of coding but I think I have got the answer test this: <?php session_start(); $add = $_GET['add']; if (isset($add)) { if (empty($_SESSION['username'])) { $_SESSION['username'] = ""; } } ?> <p align='right'><input type='button' name='add' value='add' onClick="parent.location=('<?php $_SERVER['PHP_SELF']; ?>?add=add')"></p> <?php if (isset($_SESSION['username'])){ if (empty($_SESSION['stack'])) { $_SESSION['stack'] = ""; } $i = 0; if(isset($add)){ $i = $_SESSION['i']; $_SESSION['stack'][$i] = " <font color=white>Welcome, ".$_SESSION['username']."!<br><a href='Logout.php'>Log Out</a></font> <form enctype='multipart/form-data' action='insert.php' method='post' name='changer'> <p align='center'> <input name='image' value='image' type='text'> <br> <input type='text' name='hyperlink'value='hyperlink'> <br> <input type='text' name='currency' value='currency'> <br> <input type='text' name='name' value='name'> <br> <input type='text' name='info' value='info'> <br> <input type='text' name='keywords' value='keywords'> <br> <input type='text' name='type' value='type'> <br> <input type='submit' value='Submit'><br></p>"; $_SESSION['i'] += 1; } else { $_SESSION['stack'][$i] = "you have not pressed add yet."; } } else { $_SESSION['stack'][$i] = "You must be logged in!"; } foreach ($_SESSION['stack'] as $key => $val){ echo $_SESSION['stack'][$key]; } ?>
-
No mate my fullname is houman How about you make a demo user with the demo password so I can get in.
-
[SOLVED] Form $_POST undefined error with a disabled form.
halfman replied to Eggzorcist's topic in PHP Coding Help
check your variables and see if you declare them? also you can diable the notice warning in your error_reporting -
I have made an account my username is test but it wont let me in, it says the user dosent exist!!
-
You cant have multiple forms and only one submit button so put the form tag before the table tag <form action='process.php' method='post'> <?php while($row = mysql_fetch_array($result)) { $date2 = $row['estimatedDelivery'];; $timestamp2 = strtotime($date2); $new_date2 = date("d-m-Y",$timestamp2); echo "<td> <input type='text' name='estimatedDelivery[]' value=".$new_date2."></td>"; //use array if you want to send multiple values for one variable name then use foreach or while to extract the variable name and values } echo "<input type='submit' name='submit' value='Submit updated delivery dates'></form>"; ?>