www.webdeveloper.com

Search:

Type: Posts; User: firesnaker

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    855

    In the PHP code, just comment the line echo...

    In the PHP code, just comment the line
    echo "You must write a message.";.

    By commenting, you simply put "//" at the beginning of the line.

    Or, you can delete the line alltogether.
  2. Replies
    1
    Views
    821

    Assuming that everything works, except for the...

    Assuming that everything works, except for the sort function. And register globals are off (Which they should be). Try
    ORDER BY $_REQUEST['sort']

    When a form is submitted, with register globals...
  3. Replies
    2
    Views
    607

    I am not sure what the problem here. But, looking...

    I am not sure what the problem here. But, looking at the code, check this lines:


    if ( mysql_num_rows($result_content)==0){

    $sql="INSERT INTO $table_group (first_name,...
  4. Replies
    2
    Views
    1,122

    There are two steps involved here: 1. Uploading...

    There are two steps involved here:
    1. Uploading the file to the server.
    2. Attaching the file to the email.

    So, if you are looking for one solution, there are none.

    What you can do is handle...
  5. You can change the form parameter "action" to be...

    You can change the form parameter "action" to be the same page as the form is in.

    example:

    form is in page called "myform.asp"

    you change the form action to "action=myform.asp"
  6. Fonts found in the html and css source

    From the "style.css", it looks like the website is using :
    1. HelveticaNeue
    2. DobraSlab
    3. proxima-nova
    4. din-condensed-web

    It is also loading font from typekit.net, "proxima-nova" and...
  7. The code ($ws=='x'?'ex':'zero') is a shorthand...

    The code
    ($ws=='x'?'ex':'zero') is a shorthand code.

    In the longer form, it is :


    if ($ws == 'x') {
    $ws = 'ex'
    }
    else
  8. Try blogging

    I suggest you try blogging. You can use wordpress or blogger to start. Just post daily, about web development techniques. See how it goes from there. To monetize, you can use Google Adsense to begin...
  9. There is no guarantee that finding a programmer...

    There is no guarantee that finding a programmer here will get your site finished. Like any other task, hiring someone for a job requires due dilligence on the client part.

    Do check for references...
  10. From the top of my head

    Pass the fund_id to a hidden input on the form for each radio box. Then get and set the value together with the jQuery function for the radio box.
  11. foreach ($test_array as $key => $value) { ...

    foreach ($test_array as $key => $value)
    {
    echo $key . "=>" . $value; //print out the values
    $iWait = rand(1,10); //randomize the seconds to wait, between 1 to 10
    sleep($iWait);...
  12. Replies
    3
    Views
    390

    Very interesting, I never really gives this a...

    Very interesting, I never really gives this a major thought. I simply uses "" (empty string).

    Most related functions I used are coded in PHP. So I never uses NULL.

    It might come in handy if you...
  13. The basics

    In order to pass it to the next page, you need to add it to the url that points to the next page.

    Let us say, your current page containing cellnumber is called "myform.php" and you want to pass it...
  14. In order to pass it to the next page, you need to...

    In order to pass it to the next page, you need to add it to the url that points to the next page.

    Let us say, your current page containing cellnumber is called "myform.php" and you want to pass it...
  15. Replies
    4
    Views
    820

    Not possible without scripting

    From the top of my head:
    This is not possible to do without Javascript. The idea of font in the web browser is to be fixed once it is fully loaded, resizing windows will not resize the font. There...
  16. If I recall correctly, a javascript cannot read...

    If I recall correctly, a javascript cannot read the value of a "readonly" field.

    To pass the value, try using the "input hidden" field.
  17. If I recall correctly, a javascript cannot read...

    If I recall correctly, a javascript cannot read the value of a "readonly" field.

    To pass the value, use the "input hidden' field.
  18. From the timeanddate website HTML, it looks like...

    From the timeanddate website HTML, it looks like an iframe. So it is server based. There should be nothing that needs to be changed.

    Check if you are connected to the internet during the test.
    ...
  19. Replies
    2
    Views
    312

    From Google and Stack Overflow

    I searched your query on Google and found a great Stack Overflow thread. In summary here is the solutions:

    You can use APIs:

    Hostinfo API:
    http://www.hostip.info/use.html

    Or you can use a...
  20. You need to pass the parameter to the function

    You need to pass the parameter to the function.

    Inside the function setExpDate(), objform is "undefined".

    Try put the line


    alert(objform); inside the function to help you debug the problem.
  21. Yes, you can

    I am not sure why you would want to do that, but yes, it is possible.

    Just make sure it is the right syntax. And you reference by "id", not by "name".

    It makes a lot more sense to simply use...
  22. Replies
    3
    Views
    251

    Get to know the PHP Manual, it is truly your best...

    Get to know the PHP Manual, it is truly your best friend. I downloaded a copy for use on my development laptop.

    As for programming platforms, I assume you are talking about frameworks. Some...
  23. Replies
    4
    Views
    219

    The idea is behind the repeat in css is that...

    The idea is behind the repeat in css is that instead of loading one huge file as a background image, the image is broken down into smaller repeatable patterns.

    For example, we want to fill in a...
  24. Replies
    2
    Views
    161

    You can use the onChange features on the input...

    You can use the onChange features on the input fields.
  25. Replies
    3
    Views
    643

    Personally I use bit.ly. It is one of the...

    Personally I use bit.ly. It is one of the commonly used URL shortener.

    What you are looking for is probably ad.fly I am not sure if it will make a lot of money though.
Results 1 to 25 of 26
Page 1 of 2 1 2
HTML5 Development Center



Recent Articles