-
Began Watching PHP - SEO Friendly Links
Hello i want to make SEO friendly links but i dont know how can you please help me doing that? I have this code: <?php $sql = array('ID', 'post_title', 'post_content', … -
Replied To a Post in PHP interception of executing the code (Man In The Middle)
While im in these "hacker" days i have made my website vulnerable to sql injection and Cross Site Scripting, i want to know how a hacker can use theese vulnerables … -
Edited PHP interception of executing the code (Man In The Middle)
Hello im really curius about this, i want to know is it possible to intercept the code of execution in PHP but not on the server side. So if i … -
Created PHP interception of executing the code (Man In The Middle)
Hello im really curius about this, i want to know is it possible to intercept the code of execution in PHP but not on the server side. So if i … -
Began Watching PHP interception of executing the code (Man In The Middle)
Hello im really curius about this, i want to know is it possible to intercept the code of execution in PHP but not on the server side. So if i … -
Marked Solved Status for PHP return array with folder files from function
How do i return an array with the file names from folder? I have this till now but doesn't work. function showFiles($path) { $folder = "gallery/$path"; $i = 0; if … -
Replied To a Post in PHP return array with folder files from function
Thank you very much cereal ! -
Edited PHP return array with folder files from function
How do i return an array with the file names from folder? I have this till now but doesn't work. function showFiles($path) { $folder = "gallery/$path"; $i = 0; if … -
Created PHP return array with folder files from function
How do i return an array with the file names from folder? I have this till now but doesn't work. function showFiles($path) { $folder = "gallery/$path"; $i = 0; if … -
Began Watching PHP return array with folder files from function
How do i return an array with the file names from folder? I have this till now but doesn't work. function showFiles($path) { $folder = "gallery/$path"; $i = 0; if … -
Marked Solved Status for PHP select function
Why i cannot pass array to function parametter with two items? here is the function, but i get just the first parameter `Username` function selectSQL(Array $item, $table) { global $conn; … -
Replied To a Post in PHP select function
I have finnaly make it here is what i was searching. function selectSQL(&$item, $table) { global $conn; $fields = implode(',', $item); $sql = "SELECT $fields FROM `$table`"; $result = $conn->query($sql); … -
Replied To a Post in PHP select function
Thank you guys, but i have another problem now i want to return array of the fields so i can use them, this code it gives me wierd results function … -
Replied To a Post in PHP select function
Actually it works changing to `echo` but im curious how would i do it with arrays ? I was trying like this but as you said its breaking after first … -
Replied To a Post in PHP select function
Even if i put out of the loop i get only the first result function selectSQL(&$item, $table) { global $conn; foreach ($item as $field) { $sql = "SELECT `$field` FROM … -
Replied To a Post in PHP select function
Im really confuzed someone please help ? -
Replied To a Post in PHP select function
Im trying to make a simple function to select from different tables and fields in Database This code only retrives the first value which is Username=Stefan -
Replied To a Post in Variable value when break out of foreach loop
That's correct -
Began Watching Variable value when break out of foreach loop
I'm having a little brain fart and I just want to double check something ... // Array of [a,b,c,d] $array = array('a', 'b', 'c', 'd'); // Loop through array foreach … -
Edited PHP select function
Why i cannot pass array to function parametter with two items? here is the function, but i get just the first parameter `Username` function selectSQL(Array $item, $table) { global $conn; … -
Edited PHP select function
Why i cannot pass array to function parametter with two items? here is the function, but i get just the first parameter `Username` function selectSQL(Array $item, $table) { global $conn; … -
Created PHP select function
Why i cannot pass array to function parametter with two items? here is the function, but i get just the first parameter `Username` function selectSQL(Array $item, $table) { global $conn; … -
Began Watching PHP select function
Why i cannot pass array to function parametter with two items? here is the function, but i get just the first parameter `Username` function selectSQL(Array $item, $table) { global $conn; … -
Edited PHP - Laravel HELP
Hello i started learning php laravel framework today and as far as i learned i can say its great framework. My problem is declaring the links to other files. Here … -
Created PHP - Laravel HELP
Hello i started learning php laravel framework today and as far as i learned i can say its great framework. My problem is declaring the links to other files. Here … -
Began Watching PHP - Laravel HELP
Hello i started learning php laravel framework today and as far as i learned i can say its great framework. My problem is declaring the links to other files. Here … -
Edited PHP - Page Pagination
I want to make pagination for videos since i have much videos and i cannot load all in the same page, i have a function which displays all videos in … -
Created PHP - Page Pagination
I want to make pagination for videos since i have much videos and i cannot load all in the same page, i have a function which displays all videos in … -
Began Watching PHP - Page Pagination
I want to make pagination for videos since i have much videos and i cannot load all in the same page, i have a function which displays all videos in … -
Replied To a Post in please help
You joined 16mins. ago, created this first post on the forum and you are requesting a whole program to be made by us ? i mean .... -
Began Watching please help
Write a C program that should create a 10 element array of random integers (0 to 9). The program should total all of the numbers in the odd positions of … -
Replied To a Post in PHP GET parameter
Yup it send new request to the server without params and should display all images in all categories -
Replied To a Post in Help writing php variable in HTML code
echo the html code inside php is bad practise and unstylish Seperate just the HTML code and post it here cause i cannot understand anything -
Began Watching Help writing php variable in HTML code
post -
Replied To a Post in PHP GET parameter
@jkon what should i use to securely pass parameter to other page? @phphp do you mean ? "SELECT ID, Image, imageID, Category FROM gallery WHERE imageID='".mysqli_real_escape_string($conn, $imageID)."' AND Category='".mysqli_real_escape_string($conn, $category)."'" -
Gave Reputation to jkon in PHP GET parameter
Every time you don't use prepared statements , a beaver dies in Narnia ( The case pro prepared statements made long ago many many many … many times no need … -
Gave Reputation to phphp in PHP GET parameter
"SELECT ID, Image, imageID, Category FROM gallery WHERE imageID="'.$imageID.'" AND Category="'.$category.'" -
Created PHP GET parameter
Hello, how do i escape passing parameters to page where you need to give two parameters `ID and category`? my sql is like this `SELECT ID, Image, imageID, Category FROM … -
Began Watching PHP GET parameter
Hello, how do i escape passing parameters to page where you need to give two parameters `ID and category`? my sql is like this `SELECT ID, Image, imageID, Category FROM … -
Marked Solved Status for bootstrap margin between images
Hello i have a problem putting margin between the images i have this html code <div class="row"> <div class="col-lg-12"> <h2 class="page-header">Featured Posts</h2> </div> <div class="col-md-4 col-sm-6"> <a href="portfolio-item.html"> <img class="img-responsive … -
Replied To a Post in bootstrap margin between images
Man i cannot thank you enough.. really appreciated ! Have a great day or night ! -
Replied To a Post in bootstrap margin between images
Thank you for your info but i cant understand anything i think ill leave as it is for now its working great i think. Thank you again :) -
Replied To a Post in bootstrap margin between images
here is the HTML too <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>website title</title> <!-- Bootstrap Core … -
Replied To a Post in bootstrap margin between images
Actually this solves the problem but i have a question why is not recomended to use `!important` ? -
Replied To a Post in bootstrap margin between images
Here is the full css code html, body { height: 100%; } .img-portfolio{ margin-bottom: 30px; } .img-hover:hover { opacity: 0.8; } .carousel, .item, .active { height: 100%; } .carousel-inner { … -
Replied To a Post in bootstrap margin between images
Anyone > ? -
Edited bootstrap margin between images
Hello i have a problem putting margin between the images i have this html code <div class="row"> <div class="col-lg-12"> <h2 class="page-header">Featured Posts</h2> </div> <div class="col-md-4 col-sm-6"> <a href="portfolio-item.html"> <img class="img-responsive … -
Created bootstrap margin between images
Hello i have a problem putting margin between the images i have this html code <div class="row"> <div class="col-lg-12"> <h2 class="page-header">Featured Posts</h2> </div> <div class="col-md-4 col-sm-6"> <a href="portfolio-item.html"> <img class="img-responsive … -
Began Watching bootstrap margin between images
Hello i have a problem putting margin between the images i have this html code <div class="row"> <div class="col-lg-12"> <h2 class="page-header">Featured Posts</h2> </div> <div class="col-md-4 col-sm-6"> <a href="portfolio-item.html"> <img class="img-responsive … -
Gave Reputation to rproffitt in Is it possible to delete whole android system on mobile device?
I see you wanted a little more. Flashing most Android devices is well, done with tools like http://donandroid.com/odin-tutorial-how-to-use-odin-to-flash-rom-on-android-device-634 BUT these tools may vary with the target. You asked more so …
The End.