-
Replied To a Post in Parse error: syntax error, unexpected T_VARIABLE in line 48
Line 13 has a k after the curly brace. Remove it. -
Replied To a Post in why query selecting just last record ?
In the first snippet, change: $sender_tickets = array($ticket_id); to: $sender_tickets[] = $ticket_id; and swap lines 21 and 22. -
Replied To a Post in Anyone can help me with my java assignments?
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Edited How to display pdf file in new tab using php
I am using html 5 for downloading php and open. but pdf file i want to display next tab. any body help me below is my code <a href="image/one.pdf" download="one.pdf" … -
Edited Powerpoint glith
Hi all. I'm really sorry if it is not the right forum branch for this question but. I`ve got some problem: "PowerPoint cannot read **.pptx" why could this be? It … -
Replied To a Post in a basketball club management ystem
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Replied To a Post in C# programming help
https://mva.microsoft.com -
Replied To a Post in c++ PROGRAM
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Edited Removing Products from list
I'm trying to figure out why my removeProduct method won't actually remove the product from the list please give me some feedback. InventoryApp.java class package JayJuan; import java.util.Scanner; import java.math.BigDecimal; … -
Replied To a Post in Single Producer 10 consumer(Parallel consumption) Problem
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Replied To a Post in Create Windows Services in single thread using c#
Instead of trying to time your code with a sleep (giving the possible issues that arise, mentioned above), you might want to look into [Quartz for .NET](http://www.quartz-scheduler.net). I've used it … -
Replied To a Post in how to send embed images in email using php and html
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 … -
Replied To a Post in Which port number can be used other than 4370 while connecting to biometric
> I want to know if I can use any other port number other than 4370 That depends on the configuration of your biometric device. -
Replied To a Post in Getting oo wrong
> is there any benefit to having the val object declared as new That only assures that `val` will always be instantiated with an object instance. Personally I prefer `null` … -
Gave Reputation to Suzie999 in Getting oo wrong
Thanks for suggestion guys. there is a problem with that though. class Class2 : Base { public int val = 1; public override void Print() //no suitable method found to … -
Replied To a Post in Getting oo wrong
`virtual` and `override` is what you are looking for: namespace nSpace { class Base { public virtual void Print(object val) { Console.WriteLine("Printing a " + val.GetType()); } } class Class1 … -
Replied To a Post in Empty Result Set from SHA1 .
Can you show your table structure? If the password column isn't long enough (< 40) then the hashed password gets truncated and can never be retrieved because it won't match … -
Replied To a Post in C# Comparing listbox items and displaying differences in a third listbox.
What kind of differences do you want to see? For example you can use Linq's Except() to get a cross section of the two. -
Replied To a Post in Empty Result Set from SHA1 .
How did you insert the record exactly? -
Replied To a Post in PHP/MySQL - I need help with PDO execute() and fetch
Line 87, your fetchAll, returns an array (assuming your query does not fail). You cannot execute fetch on an array, only on a PDO statement. So either return $statement in … -
Replied To a Post in import sql file in mySQL database
What programming language are you using? -
Replied To a Post in PHP/MySQL - I need help with PDO execute() and fetch
Apparently your custom function returns null instead of a PDO statement object instance. -
Replied To a Post in reference repeater control c#
using System.Web.UI.WebControls; private void Load_Childrean_byTypeID(int TypeID, Repeater repeatername) { } -
Replied To a Post in Select query doesn't show result but no error in query
You are missing quotes for one, try this: SELECT * FROM expenses WHERE datee BETWEEN '2016-01-01' and '2016-09-01'; -
Replied To a Post in Question about preg_match
There is a distinction here: .* means take as many characters you can before moving on to the next part. .*? means take as few characters you can before moving … -
Edited Disappearing Background
I created this website: http://valerobrothers.com/ Try narrowing the width of your browser enough so that a scroll bar appears at the bottom of the browser. Notice how when you scroll … -
Edited C++ project
Hi guys! I'm new in c++ so I really need your help. I have this code but I have to use classes, how can i modify the struct to class? … -
Replied To a Post in Create and read barcode
Did you try the example code on that page? Do you have GD enabled? The code is there, so what exactly is the problem? -
Edited Please help! c++
Hi guys! I'm new in c++ so i really need your help. I have to do a project Student Course Registration. I have to do a program where students can … -
Edited Parse error: syntax error, unexpected
hi i have a script created for me and im attempting to add user_id so it it gets the userid from the users table so far i have done CREATE … -
Replied To a Post in vb.net 2008 cmd.ExecuteNonQuery()
What's the error? -
Replied To a Post in MySQL Transaction
> I mean can we have multiple innodb transaction at the same time? Yes, you can. But I would still test it if I were you. Perhaps you should look … -
Replied To a Post in MySQL Transaction
http://dev.mysql.com/doc/refman/5.7/en/load-data.html You might need CONCURRENT. I suggest you try it and see what happens. What reason is there to use LOAD DATA from different clients? -
Replied To a Post in MySQL Transaction
Here is [a nice example](http://www.databasejournal.com/features/mysql/article.php/3382171/Transactions-in-MySQL.htm). Here is the link in text, it's incorrectly flagged as inaccessible: www.databasejournal.com/features/mysql/article.php/3382171/Transactions-in-MySQL.htm -
Replied To a Post in Create and read barcode
http://barcode-coder.com/en/barcode-php-class-203.html -
Replied To a Post in jQuery DOM selection
Your checkbox id is `top-1` and the associated radiobutton id is `top-all-1`. Wouldn't a simple replace be simpler: $('.toppingChecked').change(function() { if (this.checked) { var id = $(this).prop('id').replace('top-', 'top-all-'); $(id).prop("checked", true); … -
Replied To a Post in Create and read barcode
To create barcodes, you can use jQuery for example: http://barcode-coder.com/en/barcode-online-generator-2.html To read them, you usually use a scanner. The simplest is a keyboard wedge scanner, which acts like a keyboard … -
Replied To a Post in number to character conversion
Have a look here: http://php.net/manual/en/function.date.php date('d/m/Y', $yourBirthDate); date('F', $yourBirthDate); http://php.net/manual/en/class.numberformatter.php `NumberFormatter::SPELLOUT` -
Replied To a Post in slide mouseover problem
What exactly do you mean by "when i mouseover the slide it crashes"? -
Replied To a Post in bootstrap autocomplete
STOP bumping your threads. Show some patience. I tried the example, it doesn't work and I don't have time to figure out what it is. I suggest you find another … -
Replied To a Post in Java Program Source Code
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Edited How to be a good programmer
# How to be a good programmer - Tips and Tricks # Here I am writting few tips and tricks by following them you could be a good programmer, I … -
Replied To a Post in cant delete account after clicking delete
On line 8 add: echo $delete; And shows us what it outputs. -
Replied To a Post in bootstrap autocomplete
Did you include the typeahead.js script in your page? -
Replied To a Post in android
Read [our rules](https://www.daniweb.com/community/rules) (which you agreed to when signing up), especially: *"Do provide evidence of having done some work yourself if posting questions from school or work assignments"* -
Replied To a Post in Installing operational Environment for C++ on my computer.
> What do i need to install as system environment so that i could work with my computer having just Windows https://msdn.microsoft.com/en-us/library/60k1461a.aspx Download and install Visual Studio 2015 Community edition. … -
Replied To a Post in Calendar Control?
> i cant use calendar control Correct. You can't use THAT one. There are many third party calendars available, there has to be one that will suit your needs. -
Edited Linux audio not much good?
If I try listening to music on Linux Mint, it just never sounds as good as it did on Windows 10. I had a lot of enhancements enabled in WMP … -
Replied To a Post in Notice: Undefined variable: image and trying to get property of nonobject
Do `print_r($top_ratings);` and show the output here. -
Replied To a Post in Impossible to insert code snippet
Is this an issue you have with DaniWeb? If so, can you please give some more information what steps you took and when/how it fails.
The End.