-
Replied To a Post in is this a valid login page setup?
If you want, you can also use [this](https://github.com/veedeoo/PHP-PasswordLib). -
Replied To a Post in is this a valid login page setup?
can you var_dump or print_r the $userEmail and $hash? What did you get? -
Marked Solved Status for Please advice !
Last week, my Mom told me to clean our garage. When I woke up the following morning, I noticed a big disgusting pimple on my jaw line. As most adults … -
Replied To a Post in Please advice !
Thanks for all of your advice. :). I was depressed all about this for days. The doctor told me he will surgically remove this thing by next week :). @Dani … -
Created Please advice !
Last week, my Mom told me to clean our garage. When I woke up the following morning, I noticed a big disgusting pimple on my jaw line. As most adults … -
Replied To a Post in Software Developer(student)
Hi and welcome. -
Replied To a Post in Hello! fresher in this forum
Hi Freddyparc, welcome to Daniweb. Cool choice of a new language. Coming from OOP to another OOP should be pretty easy. -
Replied To a Post in exiting problems and insights from accross the globe
Hello and Welcome. -
Replied To a Post in New here
Hi Diyconservatory, welcome to Daniweb. -
Replied To a Post in From Spain
Hi Yam, welcome to Daniweb. -
Replied To a Post in Notification of new posts to watched articles
I think you will get notified for **Automatically Watch Articles I Post In?** if checked, but I am not sure if when the **watch this article** button is clicked will … -
Began Watching php variable
hpw to store a permanent value in php variable? for eg input.php <form action = "output.php" method = "post"> <input type = "text" name = "q"> <input = "submit"> </form> … -
Replied To a Post in Integrating wordpress with codeigniter
Rocky theme song and Thunderstruck by AC/DC should do it for him :). -
Gave Reputation to <M/> in Integrating wordpress with codeigniter
>Just few more steps and you're done. You can do it Dude :). in that case, lets play the Rocky theme song for him :) -
Replied To a Post in Integrating wordpress with codeigniter
@iamthwee, After thinking more about this and the efforts you have already invested on your CMS, would it be possible for you to just build the blog in CI? The … -
Replied To a Post in Good Sites That Teach Javascript
Here are the books I currently have on my bookshelf. 1. Learning Javascript Design Pattern by Addy Osmani published by O'Reilly 2. Professional Javascript for Web Developers by Nicholas C. … -
Replied To a Post in Integrating wordpress with codeigniter
Those links provided by <M/> are pretty good start. -
Replied To a Post in Undefined variable $dbh when defined already!
let's retrace all these.. try this first <?php $dsn = 'mysql:host=localhost;dbname=hidden'; $username = 'root'; $password = ''; try { $dbh = new PDO($dsn, $username, $password); $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch (PDOException … -
Replied To a Post in Open File
@iamthwee, You are correct. If he is going to distribute this application, no one will be willing to accept a win32 dll file just to run this application. Unless, he … -
Replied To a Post in Issue with image upload, resize and store path in MySQL
I don't charge people for providing them with the help I could possibly provide. However, you can donate for the cause of [Daniweb](http://www.daniweb.com/home/donate). Then you can post the source code … -
Replied To a Post in Undefined variable $dbh when defined already!
try something like this function getInfo($dbh,$user_row, $mcusername){ if($dbh){ try{ ## put your stuffs here return $user_row; } catch (PDOException $e) { echo $e->getMessage(); } } } do not wrap the … -
Replied To a Post in Undefined variable $dbh when defined already!
The error tells us that the $dbh is a non-object. Where is the part of the code where it says something like this $dbh = new PDO('mysql:host=localhost;dbname=yourdb;charset=utf8', 'username', 'password'); -
Replied To a Post in How do I upload photos to a mysql
My most preferred in storing images is exactly the same as you have suggested. Some people prefer to store images in the database. Used to be, images of high value … -
Replied To a Post in How do I upload photos to a mysql
it is called BLOb or binary large object. Yes, you can store images as BLOb in the database. You just have to show us what've got so far. Writing it … -
Replied To a Post in Python vs Ruby
> Personally I think Python is better then ruby because it runs on the Django framwork and it can do more. I do respect your affinity to Python. However, why … -
Replied To a Post in Is ASP.NET a good language to know for web development>?
> I understand that you can use c# with it to develop web apps, but I can already do everything I need and more in a webapp with python and … -
Replied To a Post in Sample Projects in ASP.NET
> I'm done with theory portion. The theory portion should have given you enough information to at least create some simple codes on a notepad++ or visual basic express. We … -
Replied To a Post in Open File
the only work around for this is to compile the .exe in the OS running the server e.g. linux, ubuntu, and others. for example, you have an executable application called … -
Replied To a Post in Issue with image upload, resize and store path in MySQL
this public static static_method(){ return $this->var2; } should read public static function static_method(){ return $this->var2; } -
Replied To a Post in Issue with image upload, resize and store path in MySQL
Before addressing your problem, please allow me to point out minor problem with your class. It might be minor now because like you said it is working on the other … -
Replied To a Post in Credit Tenants after 30 days
you may want to use php [datetime object](http://de2.php.net/manual/en/datetime.diff.php). -
Replied To a Post in How to clear form, after submit, but after data passed?
you can redirect the user to the same page after if passes the validation header(location:http://www.yourdomain.com/form_page.php); exit; You can use javascript to clear the form values, but that will not clear … -
Replied To a Post in php uplode image
try replacing the $_SERVER['DOCUMENT_ROOT'] with the relative directory. -
Replied To a Post in Displaying The Specific Uploaded Image On Student Home Page
Upload is not working because your php.ini settings for the upload related directives are pretty low. Can you copy, past, save as info.php <?php phpinfo(); direct your browser to this … -
Replied To a Post in Little bit confused about which language to choose after PHP
okay guys, I am on break :). it is around 1:18 AM in my time zone and I am just taking the 20/20 break :). Then I will eventually hit … -
Replied To a Post in Little bit confused about which language to choose after PHP
> Sounds like phalcon, I was meaning to evaluate that but was put off by the fact it needs to sit on its own dedicated There you go Iamthwee. Yes, … -
Replied To a Post in Displaying The Specific Uploaded Image On Student Home Page
try this if($_FILES['image']['name'] != ""){ $filename = $_FILES['image']['name']; $ext = strrchr($filename,"."); //$imagename = $student_id; //$imagename .="_". $filename; if($ext ==".jpg" || $ext ==".jpeg" || $ext ==".JPG" || $ext ==".JPEG" || $ext … -
Replied To a Post in Displaying The Specific Uploaded Image On Student Home Page
copy, paste and save as inisettings.php <?php echo 'Maximum Execution Time : '. ini_get('max_execution_time').'<br/>'; echo 'Maximum Input Time : '. ini_get('max_input_time').'<br/>'; echo 'Upload Max File size : '. ini_get('upload_max_filesize'). '<br/>'; … -
Replied To a Post in Sitting and Staring - Health Problems & the 20-20 Rule
wow, this is pretty scary. I have been sitting in front of my computer for long hours since I was 9 years old. Now, that I am an adult :) … -
Replied To a Post in HTML to Wordpress
First, you will have to install wordpress on your server and then read this [ tutorial](http://code.tutsplus.com/tutorials/creating-a-wordpress-theme-from-static-html-creating-template-files--wp-33939). Good luck to you. -
Replied To a Post in Ecommerce integration to website.
Hi, You can try paypal API [here](https://github.com/veedeoo/PHP-PayPal-IPN). The implementation is fairly easy. Just make sure to sign up for your Paypal sandbox account for testing. On the sandbox, you create … -
Replied To a Post in Little bit confused about which language to choose after PHP
There are some strenghts that are unique to codeIgniter, Zend, Laravel and many others. Months ago, we were telling people about the diminishing codeIgniter before the eyes of its creator. … -
Replied To a Post in Displaying The Specific Uploaded Image On Student Home Page
change this if(move_uploaded_file($userfile_tmp_name, "$archive_dir)) to this if(move_uploaded_file($userfile_tmp_name, $archive_dir ."/". $LRCardname.$ext)) another alternative is to do it like this. if(move_uploaded_file($_FILES['image']['tmp_name'], $archive_dir ."/". $LRCardname.$ext)) -
Replied To a Post in Little bit confused about which language to choose after PHP
> Is it possible to integrate SAP with php ?? There was a book entitled SAP Developer's Guide for PHP. PHP can also work with SAP HANA. > Also i … -
Replied To a Post in PHP Probid V6.11 - Need help with fixing
Check for corrupted files and proper files and directories permission. -
Replied To a Post in Little bit confused about which language to choose after PHP
There is also an ERP applications written in PHP e.g. [epesi](http://www.epe.si/),[ web ERP](http://www.weberp.org/), and some more[ here](http://sourceforge.net/directory/business-enterprise/enterprise/erp/os:windows/freshness:recently-updated/) ( not all PHP, but you should be able find PHP. ASP.net is … -
Replied To a Post in puzzle
> Close your eyes and open your mind. Should solve the puzzle. -
Replied To a Post in How to take backup the database using PHP
Hi, **I know this is 6 years old post, but if you want a fix for a 6 years old post, please read below.** Here is a good [tutorial](http://davidwalsh.name/backup-mysql-database-php) . … -
Replied To a Post in new here
Hi shrutisk welcome. -
Replied To a Post in how to design a website using html?
you can start [here](http://www.w3.org/2002/03/tutorials.html#webdesign_htmlcss) and practice on these [templates](http://www.dynamicdrive.com/style/layouts/category/C10/).
The End.