-
Replied To a Post in Manipulating sound on button click
Actually this is exactly what i want! But i dont get it how can i implement the sound into the button so it will sound same like in the engine... -
Created Manipulating sound on button click
Hello everyone, im thinking how to make car engine sound on button click... my idea is when i click the button to be the same as you click on the … -
Began Watching Manipulating sound on button click
Hello everyone, im thinking how to make car engine sound on button click... my idea is when i click the button to be the same as you click on the … -
Replied To a Post in why query selecting just last record ?
Does this can happen if my website psycho is wrong ? -
Replied To a Post in why query selecting just last record ?
Fatal error: [] operator not supported for strings in C:\xampp\htdocs\bootstrap\functions.php on line 219 (`$sender_tickets[] = $ticket_id;`) BTW again doesnt find the other users -
Edited why query selecting just last record ?
Im making search button and i want when user is searched to give all tickets received by that user i have this code but its just showing the last record … -
Created why query selecting just last record ?
Im making search button and i want when user is searched to give all tickets received by that user i have this code but its just showing the last record … -
Began Watching why query selecting just last record ?
Im making search button and i want when user is searched to give all tickets received by that user i have this code but its just showing the last record … -
Edited Navigation Problem
I'm really confuzed about this problem i have the same code on all files and is working fine but just it does problem on `home.php`. The problem is that the … -
Created Navigation Problem
I'm really confuzed about this problem i have the same code on all files and is working fine but just it does problem on `home.php`. The problem is that the … -
Began Watching Navigation Problem
I'm really confuzed about this problem i have the same code on all files and is working fine but just it does problem on `home.php`. The problem is that the … -
Created Show values on reload from another file PHP
Hello im building messages page, i want to make it when the sender of the ticket is pressed to show the ticket from that sender so i have two files … -
Began Watching Show values on reload from another file PHP
Hello im building messages page, i want to make it when the sender of the ticket is pressed to show the ticket from that sender so i have two files … -
Marked Solved Status for Count rows from table
Hello i want to make notification when new message is received, i have a row `seen` with values `0` and `1` if is 0 then its unread else is seen … -
Replied To a Post in Count rows from table
Thank you very much :) here is the final result function check_messages() { global $conn; $user = getUserData('users', 'UserUsername'); $sql = "SELECT seen FROM ticket WHERE receiverName='{$user}'"; $result = $conn->query($sql); … -
Replied To a Post in Count rows from table
oh okay but how should i output the number `3` itself. -
Edited Count rows from table
Hello i want to make notification when new message is received, i have a row `seen` with values `0` and `1` if is 0 then its unread else is seen … -
Created Count rows from table
Hello i want to make notification when new message is received, i have a row `seen` with values `0` and `1` if is 0 then its unread else is seen … -
Began Watching Count rows from table
Hello i want to make notification when new message is received, i have a row `seen` with values `0` and `1` if is 0 then its unread else is seen … -
Replied To a Post in bootstrap autocomplete
but actualy none of them works, i tried with [queryUI](https://jqueryui.com/autocomplete/) too but again no results -
Replied To a Post in bootstrap autocomplete
I must ask this, but someone ? -
Replied To a Post in bootstrap autocomplete
BTW i created new file and pasted the same code from the website and again doesn't work... **asd.html** <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of Twitter Typeahead</title> <meta … -
Replied To a Post in bootstrap autocomplete
Yes its included <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script type="text/javascript" src="../js/typeahead.min.js"></script> The path to files is `C:\xampp\htdocs\bootstrap\js\typeahead.min.js` -
Replied To a Post in bootstrap autocomplete
Anyone ? -
Edited bootstrap autocomplete
Hello guys i want to make inputbox which will autocomplete the started word so you know what i mean like google, facebook who have autocomplete but i have a little … -
Edited bootstrap autocomplete
Hello guys i want to make inputbox which will autocomplete the started word so you know what i mean like google, facebook who have autocomplete but i have a little … -
Edited bootstrap autocomplete
Hello guys i want to make inputbox which will autocomplete the started word so you know what i mean like google, facebook who have autocomplete but i have a little … -
Edited bootstrap autocomplete
Hello guys i want to make inputbox which will autocomplete the started word so you know what i mean like google, facebook who have autocomplete but i have a little … -
Created bootstrap autocomplete
Hello guys i want to make inputbox which will autocomplete the started word so you know what i mean like google, facebook who have autocomplete but i have a little … -
Began Watching bootstrap autocomplete
Hello guys i want to make inputbox which will autocomplete the started word so you know what i mean like google, facebook who have autocomplete but i have a little … -
Marked Solved Status for WRONG SQL help
Hello i want to make like button so i need to `INSERT`, `SELECT` and check does already exists the record i have this code: **likes.php** <?php require 'connect.php'; require 'core.php'; … -
Gave Reputation to ryantroop in WRONG SQL help
Looks like StefanRafa is not a valid column name in your table kladilnica Try adding quotes around '{User}' on line 18. -
Created WRONG SQL help
Hello i want to make like button so i need to `INSERT`, `SELECT` and check does already exists the record i have this code: **likes.php** <?php require 'connect.php'; require 'core.php'; … -
Began Watching WRONG SQL help
Hello i want to make like button so i need to `INSERT`, `SELECT` and check does already exists the record i have this code: **likes.php** <?php require 'connect.php'; require 'core.php'; … -
Marked Solved Status for At the end of the month start new table
How can i get the end of the month or the beggining of the month to create a new table for records ? i have this code but it gets … -
Replied To a Post in At the end of the month start new table
I found a solution <?php function remove_day($date) { return substr($date, 0, strrpos($date, "-")); } $user = getUserData('users', 'UserUsername'); $sql = "SELECT `ticket_id`, `Uplata`, `Dobivka`, `Date` FROM `kladilnica` WHERE `Username`='$user'"; $result … -
Replied To a Post in At the end of the month start new table
But `Date` is when the ticket is created not the table, do i need to create new value in the database to check the `table_date` or create a new db … -
Gave Reputation to diafol in PHP check if username and email exists
See [DW Tutorial: Common Issues with MySQL and PHP](https://www.daniweb.com/programming/web-development/threads/499320/common-issues-with-mysql-and-php) - section 11 for this. (I know you've solved it) -
Replied To a Post in At the end of the month start new table
No, i guess i need one method just when month will start 02.01.2016 for example automaticly to create new table and insert there the new items and calculate them like … -
Marked Solved Status for PHP check if username and email exists
How can i check if username and email exists i have this code but its only checking the email not the username... $sql = "SELECT `Email`, `UserUsername` FROM `users` WHERE … -
Replied To a Post in PHP check if username and email exists
SOLVED: in the sql need `OR` not `AND` :D -
Created PHP check if username and email exists
How can i check if username and email exists i have this code but its only checking the email not the username... $sql = "SELECT `Email`, `UserUsername` FROM `users` WHERE … -
Began Watching PHP check if username and email exists
How can i check if username and email exists i have this code but its only checking the email not the username... $sql = "SELECT `Email`, `UserUsername` FROM `users` WHERE … -
Replied To a Post in At the end of the month start new table
Someone who can help ? -
Edited At the end of the month start new table
How can i get the end of the month or the beggining of the month to create a new table for records ? i have this code but it gets … -
Edited At the end of the month start new table
How can i get the end of the month or the beggining of the month to create a new table for records ? i have this code but it gets … -
Created At the end of the month start new table
How can i get the end of the month or the beggining of the month to create a new table for records ? i have this code but it gets … -
Began Watching At the end of the month start new table
How can i get the end of the month or the beggining of the month to create a new table for records ? i have this code but it gets … -
Replied To a Post in PHP uploading files
Oh man I can believe :-) but thank you very much :-) -
Edited PHP uploading files
Why i get these errors when i open the page but when i try to upload it works fine ? <?php function upload_images() { $target_dir = "uploads/"; $target_file = $target_dir …
The End.