8,966 Posted Topics
Re: echo '<a href="profile.php?user="'.$usersUsername.'">'.$usersUsername.'</a><br>'; should be: echo '<a href="profile.php?user='.$usersUsername.'">'.$usersUsername.'</a><br>'; // removed one double-quote | |
Re: Have a look at robocopy to do this for you: https://social.technet.microsoft.com/Forums/lync/en-US/0b3d3006-0e0f-4c95-9e2f-4c820832ebfa/using-robocopy-to-copy-folder-structure-only?forum=w7itprogeneral | |
Re: Here's something to start with: $(function() { $("table tr").each(function() { var tdValues = []; $(this).children().each(function() { tdValues.push($(this).text()); }); // here you can use tdValues to check whether the values contain what you need // and assign a style to $(this) }); }); | |
Re: > $conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password); He asked for Microsoft SQL Server, not MySQL | |
Re: What exactly is causing your headache? Explain your issue(s). | |
Re: Why are you mixing the OOP variant of mysqli on lines 15-21 with the procedural variant on line 38 ?? | |
Re: You can do that by entering the configuration of your router. Please see the manual for your specific brand and type. | |
Re: If you search this forum, you'll find several solutions. | |
Re: Your project references an older version. Remove the reference to MySql.Data, save the project, then readd the reference to the version you have. | |
Re: All empty cells that are adjacent to pieces of the opposite color are candidates. I think you should start with that. Once you have that, you can remove the ones that are not valid. | |
It's been a while ;) Still very busy, but hoping to pop in on a regular basis. How's everyone been? | |
Re: Duplicate? https://www.daniweb.com/programming/software-development/threads/521430/syntax-error-in-insert-into-statement-error-in-vb-net-programming-while-adding-a-record-in-access-database | |
Re: No responses yet... did you get anywhere with your questions yet? 1) Searching across all columns: to do this you need to build a query containing all the columns you want to search in. You could do this automatically by getting the table info from mysql and create a SQL … | |
Re: I'm not entirely sure that your last error message is something caused by the shown code. What line is causing the exception exactly? | |
Re: If that is all your code then the `$conn = sqlsrv_connect()` is missing. | |
Re: What exactly isn't working? Do you see an error message? | |
Re: > how to set up Full-Stack ASP.NET Web Developmental Environment Install Visual Studio 2019 perhaps? What is your definition of "Full-Stack"? | |
Re: > I have tried password for but it makes changes to web design You can fix this with CSS. | |
Re: > Is it possible to check whether the php script is correct If you use a smart IDE, then you can prevent such typos easily. See [this thread](http://www.daniweb.com/web-development/php/threads/430754/check-syntax-errors). | |
Re: you cannot run PHP code in a Javascript function. You'll have to make an AJAX call to your logout script. | |
Re: Apart from your error, you are mixing mysql and mysqli functions. Don't do that. | |
Re: Instead of mysqli_query($con, $insertuserquery) or die("6: Insert User Query Failed"); do this: mysqli_query($con, $insertuserquery) or die("6: Insert User Query Failed" . mysqli_error($con)); and it might tell you why it fails in more detail. | |
Re: You may get some additional info from this site: [url=http://www.mysqlperformanceblog.com/category/replication/]mysqlperformanceblog[/url] | |
Re: This thread is over 2 years old. I suggest you start a new thread and clearly state what code you are using and what is not working. Be very specific and detailed. | |
Re: It's not a question of whether it can be done or not, it has to do with law. I suggest you remove all the info you can from your profile, and then request your username to be changed. | |
Re: You are starting a mysql**i** connection, yet use a mysql query. | |
Re: Although `$all` is optional, it should be the last parameter for this to work. PHP cannot determine which parameters you mean. From: http://php.net/manual/en/functions.arguments.php *"Note that when using default arguments, any defaults should be on the right side of any non-default arguments; otherwise, things will not work as expected."* | |
Re: Type in the ip address of your computer. If you are using a router, you may have to enable port forwarding. | |
Re: [url]http://docs.oracle.com/cd/B28359_01/server.111/b28310/toc.htm[/url] | |
Re: Just output your list as option tags of the html select tag. | |
Re: Something like this might work: http://benalman.com/projects/jquery-hashchange-plugin/ | |
Re: So what exactly are you looking for? If it is looping query results, then there are examples in the code snippets. | |
Re: > If I find out did that I will downvote you too. You do? Didn't think you would, after experiencing the effects. Anyway, what may be the cause, is that the question is about a strikethrough option for `imagettftext`. I haven't seen it done yet (nor any other styles), so … | |
Re: > This application will runs on different locations What language is this application written in? > any one place disconnect the internet at the time data will be land in local database and when active internet that data automatically synchronizing the remote database What are the rules for syncing? Have … | |
Re: > I want to know if I can use any other port number other than 4370 That depends on the configuration of your biometric device. | |
Re: What is the problem you are having now? Include code and error, if any. | |
Re: mysqli_query returns false on failure, indicating something is wrong with your query. See the sticky thread at the top of the PHP forum to find out how you can check for errors (most likely because $criteria is misspelled). | |
Re: > The only free forum I know http://www.forummatrix.org http://www.cmscritic.com/resource-lists/forum-list/ | |
Re: Increase the size of your description column, so the data will fit. | |
Re: Change line 68 to: $tbl .= '<tr><td>' . $id . '</td><td>' . $key . '</td></tr>'; You are overwriting the last line with every loop, instead of concatenating. | |
Re: Depending on the size of your table, it's sometimes faster to first select 5 random ID's (because it uses the index table), and then join with the actual columns you need (or get them in a second call). | |
Re: I suggest you read this first: [url]http://www.daniweb.com/forums/announcement124-2.html[/url] Come up with an idea. Then, if you have problems, show us your code and explain the problem. | |
I am new to WP (trying to help my partner), and looking for an easy to use theme that kind of looks like what I have at pritaeas.net. Basically I want the homepage to feature images (text optional) pointing to a section on the website. I have been searching but … ![]() | |
Re: Please show some patience. This is a forum, not a chatroom. |
The End.