Jump to content

Chikwado

Members
  • Posts

    287
  • Joined

  • Last visited

Posts posted by Chikwado

  1. In my server default setting mysqli has empty hsotname and username with empty password. how to add value to replace those field, especially hostname username password. I use to write the following command to view it

    <?php echo phpinfo(); ?>
    And I can see that the values are all empty field. Some one help.
  2. If you go to file->save in the browser

    I am using notepad++ not browser, After typing I select file->, save as-> then window explorer will open up and I will click save, then it highlight instead of saving the file.
  3. Can some one help explain this: how to save this type of file, page.php? one=file1&two=file2 If i try to click save in window explorer it highlight the text not actually saving the file. I am using window 8. Thanks.

  4. Some one help explain this: Is it possible to wrapp css property in php. Example:

    <?php                                      header('Content-Type: text/css');   .box{font-weight:bold;}
    Then may be you can include it in head section. Although I have not hear these story before. But I have seen something that look like that in Phpmyadmin.
  5. Yes,

    var person = {}; person.anotherperson = {}; person.anotherperson.moreperson = {};
    To access element from third curl bracket:
    document.write(person.anotherperson.moreperson['first element from third curl bracket']);
    More correction please.
  6. How to add several object, For example: Is it possible to use object like this:

    var preson = {}; person.anotherperson = {}; person.anotherperson.moreperson{};
    Then may be if I want to access element from the third curl bracket, then may be I would use:
    person.anotherperson.moreperson['first element of the third object container']
    Can some one help explain more. Yes, Edit my post
    person.anotherperson.moreperson = {};
  7. I am try to encode a file related to index page, For example If I have www.chiquado.com/folder1/folder2/file.php. Now how do I encode folde1/folder2/file.php so that people would not see file name?

    php

    You need to follow example on the tutorial not just testing what you feel, it's a time consuming. php is a template, you would not be able to add anything to it.

  8. Some one help, this file is not returning error or sending a message . The file is currently in phpmailer directory HPMailer If I select

    mail()
    to send it, It says message successfully sent but could not deliver to the inbox. Some one help.
  9. Yes, "." is for current directory and ".." is parent directory. Ok what of other double dot Example:

    include('../../file.php');
    How many directory are here now?
  10. Can some one help explain what I did here,

    <?php                                                                                                             include_once('../../library.php');                                                                /*testing include file now*/                                                                      require_once('../../file/file1/page.php);                                                                                                                ?>
    I use to see a file been positioned like this, but could not understand what they did. What is the meaning of several dot and forward slash across before the name of library file? Can some one explain more?
×
×
  • Create New...