Jump to content

Chikwado

Members
  • Posts

    287
  • Joined

  • Last visited

Posts posted by Chikwado

  1. Congratulations!  Exactly! Davej.       While writing in my notepad, some times when I look at the left side that I started the "var" it's a long way. Ok, to the right side it's over 100cm. I need to jump to the next line.                                            Somethings
    like this seem to work:
    var myText ="some text" + "some more text";
  2. No, this example seem to be different with what I am planning to do. I have found the answer, This is what I did:

    <a href="test.html" target="blank">
    Then to style it:
    a[target] { style properties here}
    Although I have 10 hyperlink in my navigation bar. That "a[target]" will grab all of them as far they has attribution as target. Then after footer I have summary which is like navigation bar. I managed to style them this way:
    <a href="text.html"  target="blank">
    Then to style it;
    a[target=blank]{ style properties here}
    If you pay attention on this style, you will understand that a lot of tricks was made there.
  3. I would advise you to work with notepad++, with notepad++ you will find thausand of tutorials out there. And also more than one hundred expert who are willing to answer your question. Ok, while working with dreamweaver you must have to hire a teaher, who will charge you no less than N10,000 to N15,000 to teach you common html. I have a dreamweaver in my room and I don't want to think about it, although dreamweaver saves time. But that is not all the best. You need to work hard to produce good things.

    • Like 1
  4. if you want to use one css file, You could use classes in order to give defferent style in every one class

    you mean that I will have to add class to <a> tag, For example:
    <a class="control" href=
    "stuff.html">Some Stuff</a>
    am I correct this way? More help.
  5. Some one check this: How to control style in my webpage, Example: The style properties I made in navigation bar, The style on hyper link spread to every hyperlink in mywebpage. I need to control it. Some tutorials said that I need to add . . .

    !important
    or
    nochange
    some one help.
  6. Some one check this: Where exactly do I have to test javascript ajax? I am testing it locally in xampp not on network. But it do not work. Some one help.

  7. Ok, Is it possible to do it like this:

    $check=getimagesize($_FILES
    ['fileToUpload']['tmp_name']);
    //To add html and php document
    $check=getphpsize($_FILES
    ['fileToUpload']['tmp_name']);
  8. Some one check this how to validate phone number with javascript. I have the following code but not so sure.

    <!DOCTYPE html>
    <html>
    <head>
    <script>
    function myfunction() {
    var x=document.forms
    ["myForm"]["phone"].value;
    if (x==isNaN(0-9) || x==isNaN(0-9);
    { alert("Input your phone number");
    return false;
    }
    }
    </script>
    </head>
    <body>
    <form name="myForm"
    action="demo_form.asp"
    onsubmit="return validateForm()"
    method="post">
    Phone number:<input type="text" name="phone">
    <input type="submit" value="Submit">
    </form>
    </body>
    </html>
    I don't know the outcome of this code but I am try to validate phone number with it. Some one help.
  9. Some one check this: I am completely new to sql, Now, where do I have to type following code? Not in the Notepad.

    SELECT*FROM Customers;
    And what exactly does the above code do? Although I have not create table but have create mysql username and password, I can login to phpmyadmin using the following address:
    http://localhost/phpmyadmin
    some one help please.
  10. Some one check this: Notepad++ is it suported to c++ and other rest of programming language? Because in language menu I can see c++ showing face. Although I was hungry to download a compiler.

  11. I have dreamweaver 8 which I dumped inside room, I don't want to think about it. I know nobody will teach me how to develope web with it. But for notepad thausands ot tutorials are there for free. For me I prefare notepad.

  12. I have no other means to put file inside htdocs except draging it. I pressed "ctrl" and drag it to htdocs. And it generate .php.nlk Are there any way to save my php file direct to htdocs?

  13. But does it mean that this notepad is not strong enough. Because I have choosed "Allfiles" and "UTF-8" and yet window will add "lnk" to file extension and keep it hiding i may not see it or notice it. I know if this file has extension as .php xampp must surely pass it to browser.

×
×
  • Create New...