• Member Avatar for veedeoo
    veedeoo

    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).
  • Member Avatar for veedeoo
    veedeoo

    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?
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Software Developer(student)

    Hi and welcome.
  • Member Avatar for veedeoo
    veedeoo

    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.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in exiting problems and insights from accross the globe

    Hello and Welcome.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in New here

    Hi Diyconservatory, welcome to Daniweb.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in From Spain

    Hi Yam, welcome to Daniweb.
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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> …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Integrating wordpress with codeigniter

    Rocky theme song and Thunderstruck by AC/DC should do it for him :).
  • Member Avatar for veedeoo
    veedeoo

    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 :)
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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. …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Integrating wordpress with codeigniter

    Those links provided by <M/> are pretty good start.
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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');
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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; }
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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).
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in php uplode image

    try replacing the $_SERVER['DOCUMENT_ROOT'] with the relative directory.
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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, …
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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/>'; …
  • Member Avatar for veedeoo
    veedeoo

    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 :) …
  • Member Avatar for veedeoo
    veedeoo

    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.
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    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. …
  • Member Avatar for veedeoo
    veedeoo

    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))
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in PHP Probid V6.11 - Need help with fixing

    Check for corrupted files and proper files and directories permission.
  • Member Avatar for veedeoo
    veedeoo

    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 …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in puzzle

    > Close your eyes and open your mind. Should solve the puzzle.
  • Member Avatar for veedeoo
    veedeoo

    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) . …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in new here

    Hi shrutisk welcome.
  • Member Avatar for veedeoo
    veedeoo

    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.