
Ex1t
Members-
Posts
28 -
Joined
-
Last visited
Everything posted by Ex1t
-
Im using this query for login in standard PHP. $sql = 'SELECT * FROM admin WHERE username = "$username" AND password = "$password"'; $run_query = mysqli_query($con, $sql); $check_query = mysqli_num_rows($run_query); if(!$check_query) { echo 'Failed'; } else { echo 'Success'; } How should look that query in OOP? Im just started with OOP, I successfully created a connection with database in PDO, so now I have problem with this login query Im just missed category, sorry moderators, please move..
-
I have included now all required files from https://github.com/facebook/facebook-php-sdk-v4 But i still get some errors, i have fix it 1 by 1 but still and still getting new errors for including and others..
-
I fixed last error, but I got this error now Fatal error: Class 'Facebook\Facebook' not found in C:\wamp\www\fb_upload.php on line 223
-
Okay, so i dont know to work with API but im trying So this is my simple code <form action="" method="post"> <input type="file" name="fileToUpload"> <button>Upload</button> </form> <?php $target_dir = "uploads/"; $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); $uploadOk = 1; $imageFileType = pathinfo($target_file,PATHINFO_EXTENSION); // Check if image file is a actual image or fake image if(isset($_POST["submit"])) { $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]); if($check !== false) { $fb = new Facebook\Facebook([ 'app_id' => 'myappid', 'app_secret' => 'myappsecret', 'default_graph_version' => 'v2.4', ]); $data = [ 'message' => 'My awesome photo upload example.', 'source' => $fb->fileToUpload($target_dir), ]; try { // Returns a `Facebook\FacebookResponse` object $response = $fb->post('/me/photos', $data, 'myaccesstoken'); } catch(Facebook\Exceptions\FacebookResponseException $e) { echo 'Graph returned an error: ' . $e->getMessage(); exit; } catch(Facebook\Exceptions\FacebookSDKException $e) { echo 'Facebook SDK returned an error: ' . $e->getMessage(); exit; } $graphNode = $response->getGraphNode(); echo 'Photo ID: ' . $graphNode['id']; echo "File is an image - " . $check["mime"] . "."; $uploadOk = 1; } else { echo "File is not an image."; $uploadOk = 0; } } ?> I got this error message Notice: Undefined index: fileToUpload in C:\wamp\www\fb.php on line 10 What is wrong in code for upload? Btw. are code for facebook API good?
-
Because im using fancybox for zoom When someone click on image, image zooms and title attribute is description or in my way like and share buttons
-
Yeah i checked that, but i dont know how to implement that in my code..
-
<?php .... $sql="SELECT * FROM `images` ORDER BY `id` DESC LIMIT $start,$end"; $rdata=mysqli_query($conn, $sql); while($res=mysqli_fetch_array($rdata)) { $imgname=$res['image']; $path = 'img/'.$imgname; ?> <img src='<?php echo $path; ?>' height="500" width='500' alt='<?php echo $imgname; ?>' title='<div class="fb-like" data-href="http://site.com/<?php echo $path; ?>" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>'> <?php } ?>
-
Thanks for help I work on this project as exercise
-
This is my code for facebook like and share <img src='<?php echo $path; ?>' height="500" width='500' alt='<?php echo $imgname; ?>' title='<div class="fb-like" data-href="http://mysite.com/<?php echo $path; ?>" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>'"></iframe> Now $path is location to image, $imgname is name of image When I look image for first time I can see like and share button, but when i do it again, i cant see like and share button.. Why?
-
I have image upload script, now i want that when I upload new image to my site to share automatically on facebook page, can i make some simple script for that operation? Can someone give me simple code for that?
-
Im using md5 only for my projects on localhost.. For Everything else im using bcrypt
-
What is wrong in this code? $username = htmlspecialchars($_POST['username']); $password = md5($_POST['password']); $sql = "SELECT * FROM users WHERE username='$username' AND password='$password' "; if($conn->query($sql) === TRUE) { $_SESSION['username'] = $username; header('Location: panel.php'); } else { echo 'Wrong username or passsword!'.mysqli_error($conn); } I fixed it.. This is my code now: $username = htmlspecialchars($_POST['username']); $password = md5($_POST['password']); $sql = "SELECT * FROM users WHERE username='$username' AND password='$password'"; $query = mysqli_fetch_assoc($conn, $sql); $run_query = mysqli_query($conn, $sql); if(!$run_query) { echo 'Wrong username or password!'; } else { $_SESSION['username'] = $username; header('Location: panel.php'); }
-
Can you give me code for example?
-
I need progress bar in javascript for php cURL This is my code $url = 'www.site.com'; $list = array("ext.pdf", "ext_1.pdf", "ext_2.pdf", "ext_3.pdf", "ext_4.pdf"); foreach($list as $lists) { $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_URL, $url.$lists); $result = curl_exec($ch); curl_close($ch); if (preg_match("/200 OK/", $result)){ echo "<p>$url$lists</p>"; } else if (preg_match("/401 Unauthorized/", $result)) { echo "<p>$url$lists</p>"; } } Can someone help?
-
I have this code $url = 'www.site.com'; $list = array("ext.pdf", "ext_1.pdf", "ext_2.pdf", "ext_3.pdf", "ext_4.pdf"); foreach($list as $lists) { $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_URL, $url.$lists); $result = curl_exec($ch); curl_close($ch); if (preg_match("/200 OK/", $result)){ echo "<p>$url$lists</p>"; } else if (preg_match("/401 Unauthorized/", $result)) { echo "<p>$url$lists</p>"; } } Now, if this script finds nothing i want to echo 'Not found'.. I can do it with 'else' but it displays 5 times.. I tried with exit() but there is also problem.. Help please
-
Not that.. I want footer to stay at the bottom after data being loaded
-
This is my code for pagination <?php $sql = "SELECT * FROM images"; $rs_result = mysqli_query($con, $sql); $total_records = mysqli_num_rows($rs_result); $total_pages = ceil($total_records / $end); echo "<a href='index.php?page=1'><button>".'First page'."</button></a> "; for ($i=1; $i<=$total_pages; $i++) { echo "<a href='index.php?page=".$i."'><button>".$i."</button></a> "; }; echo " <a href='index.php?page=$total_pages'><button >".'Last page'."</button></a>"; ?> Its works, but the display will be as follows But i want something like this How to create that dots? Something like a max pagination pages.. If u know what I mean.. Because i will have more than 20 pages on my website and it will spoiling the design
-
This is normal page, look footer And this is page with loaded data And you can not see footer
-
When php loads new data all passes over the footer, this is my code for footer footer { position:absolute; bottom:0; width:100%; } If u dont know what I mean, I can make some SS
-
That is for video downloading.. Is there some tutorial for www.youtube-mp3.org API?
-
I want to create simple php script that creating from youtube video mp3 file, then give link for download Can someone give me tutorial for that or give me some ways how to do it?
-
I did it with session, thanks for help guys!
-
Thanks, all is finished, but just 1 more question How to make author of the article? If u know what I mean.. There is in my design, Published: 07/10/2015 | By: SomeAuthor How to make that SomeAuthor? Can I do it with session?