-
Replied To a Post in SQL Quiries
I don't see your work to date on this issue. Read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question so we can get going. -
Began Watching SQL Quiries
Hi, I just need to fetch data from data base from search button on search page and get the result displayed on form in searchresult page.... For eg , if … -
Replied To a Post in PHP inside HTML Table not working properly
You left out a fine detail. How many rows are there? Most SQL implementations LIMIT the return set size to so many number of rows. You can override this in … -
Began Watching PHP inside HTML Table not working properly
Hello, I'm not able to display the whole select result information in the table and I have no idea what I am doing wrong, I would appreciate your help so … -
Replied To a Post in Animation plays weirdly in rotated container
Maybe I need to see the normal animation? Both examples looked to do the same thing here. As to why a rotated animation would slow, have you written graphics fill … -
Replied To a Post in What is latest version of Oracle ERP Cloud Solution ?
@Addvantum. Don't be disengenious. Your profile and other post tell us you are into sales or support of these products. You could get called out for possible shilling. -
Began Watching What is latest version of Oracle ERP Cloud Solution ?
All information related upcoming ERP Cloud systems by Oracle -
Replied To a Post in Best Front End Web Technology for Large Scale Applications
With your last reply I get the feeling you are creating form after form after form. That's working very hard in my opinion. I have this app (not web based) … -
Replied To a Post in Animation plays weirdly in rotated container
I'm on W10 but I didn't see any diff from Firefox on either script. Also looked same on Opera. Maybe it's just not obvious what to look for? -
Replied To a Post in lighttpd to change (.php) extension
Time to hit the documentation? Do you see where to add your .abc to where in the docs at https://redmine.lighttpd.net/projects/1/wiki/TutorialConfiguration I can't tell you this as I want to know … -
Replied To a Post in lighttpd to change (.php) extension
It also works there. Your web server calls the scripts so you configure your site to use the new extension. This is not a PHP issue at all. -
Replied To a Post in Animation plays weirdly in rotated container
Tried it on Firefox 57.0.3. Didn't see any difference. Same result on Opera. -
Began Watching Animation plays weirdly in rotated container
Hi, I ran into weird issue in Firefox 57.0.2. I have two panels that translate without issue but if I set rotation on container animation plays weirdly. If I set … -
Replied To a Post in lighttpd to change (.php) extension
Why not? Example: <?php echo 'hello world!'; ?> save it as hello.abc then run it like this. `php hello.abc` -
Began Watching lighttpd to change (.php) extension
i want to change (.php) to my own extension like (.abc) and it should work like php page in lighttpd server in ubuntu os. Anybody knows how to do this? -
Replied To a Post in Primes in the first positive integers.
You posted as if this is a job for hire. Please read https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question I also worry you left out a requirement as usually the app/program/code will ask for the first … -
Began Watching Primes in the first positive integers.
Write a program that establishes all the primes in the first positive integers. [ C++] -
Replied To a Post in DLL not loaded with LoadLibrary() function
Just noticed a double backslash in your last line 1. Why is that there? PS.[ https://msdn.microsoft.com/en-us/library/windows/desktop/ms684175(v=vs.85).aspx](https://msdn.microsoft.com/en-us/library/windows/desktop/ms684175(v=vs.85).aspx) shows how to use. Notes: 1. The filename looks to be case sensitive. 2. … -
Replied To a Post in DLL not loaded with LoadLibrary() function
Why was that L there? I've never seen that? Didn't the compiler bark at you? Also, now that we know a bit more about what you are trying to build. … -
Replied To a Post in DLL not loaded with LoadLibrary() function
Help me out here. What is the letter "L" doing in the () of line 11? -
Replied To a Post in DLL not loaded with LoadLibrary() function
I wonder about that L in the () line 11. Also, just call out the full path since well, may as well try it. Of course if there are permission … -
Replied To a Post in Best Front End Web Technology for Large Scale Applications
Your post reminded me of an old saying. > A painter doesn't blame the brush The front end is as you make or design it. If you are good with … -
Began Watching Best Front End Web Technology for Large Scale Applications
Dear team, We are going to develop the WEB Application which contains more than 200 forms with different fields. Kindly, let us know which technology is best for front end … -
Replied To a Post in Creating Linked List in MIPS. Inserting, Deleting, Printing implemented
Same thoughts plus one. IRL or in real life we rarely write the entire thing in assembler. That's only done in homework. At the office we get a C compiler … -
Replied To a Post in DLL not loaded with LoadLibrary() function
Line 11 looks odd to me. Are you sure about what's in the ()? Did you check if the dll exists? -
Began Watching DLL not loaded with LoadLibrary() function
LoadLibray returns 0 when I'm trying to load a dll file. I'm using Visual Studio 2017 #include "App.h" #include <windows.h> #include <iostream> using namespace std; typedef int(__stdcall *f_funci)(unsigned char, unsigned … -
Replied To a Post in Social media topics
I hit your link and the title is "Go From Big Data to Data Scientist in Just Three Days at Boston University" which is either an bad advert of the … -
Began Watching Social media topics
Are there any filters that help choose the social media topics that are gonna be shared more? I was thinking about joining a course like one of these http://sites.bu.edu/social-media-analysis/ and … -
Replied To a Post in Please help me
Hi @A. Let's start with how this forum works. Unless you are hiring and paying which you can tell the forum up front when you post. It's time to read … -
Began Watching Please help me
Using the code in class Coin as a base write in a file and do the following 1. Create two coin objects coin1 and coin2 2. Demonstrate that they are … -
Replied To a Post in Payment Integration
@stultuske, good point. Just recently our office picked up on a development project and they were worrying about decompilers so they were expending time (which is money) on that area. … -
Replied To a Post in Login in php
Sorry, I've yet to see perfect code. But I did try to share why your system is broken in both a missing line plus why it's a bad idea to … -
Replied To a Post in Login in php
1. For starters are you sure you can break lines 11 and 12? 2. Where is the OCI execute? Example at http://php.net/manual/en/function.oci-fetch-array.php 3. How are you going to avoid breaking … -
Replied To a Post in Login in php
This looks to have the same bad design I noted at https://www.daniweb.com/programming/threads/511090/login As I read from https://www.google.com/search?q=php+login+hash+salt+example it appears you are re-creating a wheel. That is, look how it's done … -
Began Watching Login in php
hi everyone i need help in my query while user login. <?php $username = $_POST["username"]; $password = $_POST["password"]; $con = oci_connect("user","pswrd","db"); if(! $con) { die('Connection Failed'.oci_error()); } $query = "SELECT … -
Replied To a Post in login
I see on line 15 a basic flaw. You are storing passwords which is a big no no. Read why at https://www.google.com/search?q=Never+store+passwords+in+a+database What should you do? Store a hashed, salted … -
Began Watching login
hi everyone hope you all are in good. i have query while login form in php with oracle database..... i want to simple login with database html code: <p> <form … -
Replied To a Post in How to hide a button in php
ALARMS! Line 19 shows a common gaffe in login and registration systems. Here's the rule. > Never store passwords in a database. It's just not done. If this is for … -
Began Watching How to hide a button in php
else{ echo "Password should not be empty"; die(); } i want to hide a button here is the full code using mysql data with phpmyadmin on online server (not localhost) … -
Replied To a Post in Payment Integration
PS. I forget at times folks don't know the words to do research with. Here's the search I used showing it's all been done many times in many different ways. … -
Replied To a Post in Payment Integration
You wrote what you want, so now it's time for you to add the button, code and use any of the methods kicked around before. In other words, take your … -
Replied To a Post in Can someone tell me how this is done?
It's most likely done with trackers. Apps today are now, for the most part always including Trackers. Yes, you've read about Ad-Sponsored Apps but there's more. There's always more. Take … -
Began Watching Can someone tell me how this is done?
Hi all, I'm not very experienced at web development, but I'd like to know how the following is accomplished. I haven't been able to find specific info via google on … -
Replied To a Post in Runtime Error in Ionic App
Now you make me worry that Ionic has blown their installer up. Get to the authors there and ask what's going on. -
Replied To a Post in Payment Integration
To me, after reading your post twice I get the feeling this is the following question. [How do I sell my Java app?](https://www.google.com/search?q=how+do+I+sell+my+Java+app%3F) It appears that's been kicked around for … -
Began Watching Payment Integration
Hi! I have developed a desktop application in java. Now I want to do payment integration with this app. Actually I have to do payment integration for first time in … -
Replied To a Post in 2Khz sound signal using PC sound card
I have to ask. Are you attempting to make a SODAR? When I read https://wiki.python.org/moin/Audio/ I came away that this will be platform dependent so you should add tags for … -
Began Watching 2Khz sound signal using PC sound card
How to generate 2KHz sound signal using pc soundcard continuously in python -
Replied To a Post in Swift_TransportException Connection could not be established with host smtp
Have you tried what everyone has written about this error yet? I find this sort of error has over a dozen fixes and I've yet to fix it on the … -
Began Watching Swift_TransportException Connection could not be established with host smtp
Hello, I try to send auto mail through laravel using gmail yet getting this error: Swift_TransportException Connection could not be established with host smtp.gmail.com .env MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail.com MAIL_PORT=465 MAIL_USERNAME=davy.yg1@gmail.com MAIL_PASSWORD=***** …
The End.