• Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Firewall help!! Third party access! Our IT guy is gone!

    If your boss is delegating this responsibility to you, I believe you should ask him to at least buy you a Cisco Packet tracer and practice on it. You can …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in How can I use PHP to create login-controlled web pages?

    there are many tutorials and readily available scripts out there. There is one [here](https://github.com/veedeoo/RegistrationForm). It is an old one, but it should be able to do the job. I was …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Is PHP only considered a web development language?

    PHP is one of the best web platform and we want it to stay that way.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Having issues sending to yahoo.

    Is there any way of finding if the email has been sent? Hold on.. I have an idea. Change the bottom part of your code to this.. echo(mail($usr_email, "Login Details", …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Binary (image) storage in DB v.s. File Storage

    I favored the hybrid of both approach. When you move to a new server, you can zip the files and off you go.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Displaying The Specific Uploaded Image On Student Home Page

    line 11, should read if(move_uploaded_file($userfile_tmp_name, $archive_dir)){
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Software development,a wise choice of second career for an older woman?

    Because I am way so much younger than the majority, I can't say much about my experiences in life. However, why worry about age? I thought humans are like fine …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Messages opensource

    davy_yg, Common man, you been writing application all these years. I know you can do it. Here is an example of a basic table structures of a internal PM system. …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Is there a way to make an android app with PHP and JSON and such

    Android Apps are pretty much written in JAVA compiled in android SDK. The only thing that the PHP can help achieving the mobile apps is to provide the API in …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Why do PHP developers get paid less then other types?

    It all depends on the quality of codes you can deliver. If you can write an application pretty close or at least at the same quality as the application written …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Can PHP run with other languages like c# on the same database?

    We can pretty much do anything with PHP :). Just the thought of it, makes you feel proud writin high quality codes in PHP.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Can PHP run with other languages like c# on the same database?

    Yes, it is possible in [Phalanger and ASP.net](http://www.php-compiler.net/blog/2011/phalanger-3-0) environment. I lifted these codes from this [website](http://www.php-compiler.net/blog/2011/c-sharp-app_code-php). <b>Camels created: </b><?= Class1::$CamelsProcessed ?><br/> <b>Previous camel: </b><?= Class1::$LastCamel ?><br/> <?php $x = new …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Auto commit while bulkuploading a csv file

    Honestly, active record method insert() will only return boolean true or false after the query has been executed. If you want to make sure that the response is taking into …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in need help getting this login form to work right

    Your form tag is way above the <body> tag. It should stay below the <body> tag. There are many great websites out there where you can read about proper html …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in where do i put the password_verify function in my code please ?

    Exactly, you don't fetch the password from the database using the user's password input. Only the user's inputted username. Example: Make sure to use PDO or Mysqli. In this example, …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Hi from Tahin Hasan

    Hi, welcome :)
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in bank transfer payment method

    Actually they are not hard to find. Here is [one](https://github.com/EVO-Snap/PHP-SampleApp-SOAP-Basic-CardPresent/blob/master/source/TransactionProcessing.php) good example . The integration can be found [here](http://www.evosnap.com/support/knowledgebase/integration-guidance/). If you want to use paypal, you can use [this](https://github.com/veedeoo/PHP-PayPal-IPN). The …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Displaying The Specific Uploaded Image On Student Home Page

    How many images are allowed per student? More than one? you need to create an image database table +-----+----------+---------+ + id + owner_id + img_url + +-----+----------+---------+ one only? follow …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Split Array

    Just another deviation of the two proposed solutions above on a single loop. $string = 'string1-1/string2-2/string3-3'; $array_string = explode('/',$string); foreach($array_string as $items){ $item = explode('-',$items); echo 'Item : '. $item[0].' …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Problem in Updating PHP MYSQL data through a textarea field

    just wondering, what is the purpose of for loop and increment? Is it for speed or for some other reason/s?
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in bank transfer payment method

    I believe this is not something you can achieved without the help of a Payment Gateway through API e.g. paypal, echeck.net, evp snap and many others. In creating this type …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Wordpress little help required

    @hallianonline, Cereal, have provided more than enough to solve your problem and if you need more please follow link below.. [another one](http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters) for you. The answer to your question is …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Codeigniter resize image not working

    you can try using the absolute or relative url of the image or try adding file:// ## or file:///
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in where do i put the password_verify function in my code please ?

    password_hash for PHP version 5.5.x can verify the password from the user's input. for example, we have user submitted form data $password = $_POST['password']; $username = $_POST['username']; ## don't forget …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in At what age did you create your first website?

    My first <HTML></HTML> page was created when I was 9.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Web Registry Software

    Wow, that's pretty big investment right there. The last time I heard it was up for $185,000 per TLD.. Good luck to you.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Features for a Photo Management System

    how about rating and comment system. member playlist or view list ( member can save photos in their playlist). flagging function where users can flag photos for immediate admin reviews …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in As a beginner, what IDE should I use?

    PyCharm looks promising, but the features I like to have are all in the paid version only. Community version should help beginners and intermediate programmers/developers.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in forum creation

    In addition, you can also consider[ Django](https://www.djangoproject.com/) python web framework. There is one example[ here](http://lightbird.net/dbe/forum1.html) and more[ here](https://www.djangopackages.com/grids/g/forums/).
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Converting Java hash method to PHP

    for this mdEnc.update(source.getBytes(), 0, source.length()); not sure if you can get away with it using the PHP function called [ord ](http://www.php.net/manual/en/function.ord.php) . Again, I am pretty much speculating here trying …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in What technique did you use to learn to program?

    The first thing I always learn and get myself familiarize with is the language construct. Regardless of what programming language it is, their language construct is the most important.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Error in updating learner information

    Let me give you the hints first... line 29, 35, and 38 are not valid statements. Line 36, you've used COMMIT which is the last query segment in trasactional. The …
  • Member Avatar for veedeoo
    veedeoo

    Gave Reputation to iamthwee in Blender3D Lighting Tutorial

    In this tutorial I will be showing you how to create the perfect studio lighting for your 3D models in blender3D. I am going to assume you know how to …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in What are you drinking/eating

    I am having coffee, pause(sour gummy bear), coffeee, pause(gummy bear), coffeeee and more coffeeeee. :)
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in please correct the two syntax errors after exit;

    you cannot exit when you are already outside the block.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Show .php files before $_SESSION

    @Simonloa, I highly recommend doing this. If you want to use the rest of your codes. if(isset($_SESSION['uid']) && (!empty($_SESSION['uid'])){ $uid=$session_uid; $login='1'; } else{ $url=$base_url.'login.php'; header("location:$url"); } and for the ob_start("ob_gzhandler") …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter sessions

    > On a side note why the hell does the vanilla install of codeigniter force you to set an encryption key but doesn't force you to set cookie_encrypt to be …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in How long have you been programming for?

    1. I was about 9 basic programming. CGI with Perl at 10 and then, I almost took over the world when I was 10 ( Just Kidding :), but it …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Show .php files before $_SESSION

    I am not sure, if this is want you want session_start(); if(!isset($_SESSION['uid'] || $_SESSION['uid'] == ''){ ## session don't exist or not set ## do what you need to do. …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in mysqli not breaking data

    You could try something like this.. something pretty easy without function and no object.. $option_block = ''; //this actually prevent the error just in case it is zero results. $query=mysqli_query($rcon,"SELECT …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Php - SQL

    I think you can do it with [rollup](http://dev.mysql.com/doc/refman/5.0/en/group-by-modifiers.html).. There is one example there that pretty much identical to yours.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Fatal error unidentified function mysqli _connect()

    Did you try running this <?php phpinfo(); ?> scroll down the page and look for the mysqli table similar to the screenshot provided below. ![72ddcc2c5e1350a528eb59b81f3d8ce2](/attachments/large/3/72ddcc2c5e1350a528eb59b81f3d8ce2.jpg "72ddcc2c5e1350a528eb59b81f3d8ce2")
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter sessions

    > Still confused about that one. Seriously, there should be a massive disclaimer about using CI sessions! It's ridiculous. I do understand your frustration. For once more, please allow me …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in How to save custom php page as PDF?

    try [this](http://www.fpdf.org/).
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in Hi Everyone

    Welcome and Hello! I really don't know what to say about your career, and I honestly believe that I am in no position in giving such kind of advice. Besides, …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter sessions

    Also, if you run this <?php phpinfo(); ?> you will be able to check for whatever php extension you have installed on your server. If you go down about 3/4 …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter sessions

    I forgot, when you distribute your application, make sure that your installation database table for members must have a predefined auto-increment value to prevent clever users from guessing the member's …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter sessions

    Yes, you are correct a clever user can edit their session. Just be very careful and always make sure to manually itimized the session you ONLY! need for the user …
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter install app

    that's pretty cool approach iamthwee :). Your ultimate CMS is looking great indeed.
  • Member Avatar for veedeoo
    veedeoo

    Replied To a Post in codeigniter install app

    Additional information. Since distributions of application, requires version maintenance and upgrades. The installer should be able to check the version being installed agains the latest version available. This can be …

The End.