Jump to content

proudly

Members
  • Posts

    39
  • Joined

  • Last visited

Posts posted by proudly

  1. I'm not sure what you're getting at. Hopefully you're not assuming his username is "Devoted Member", just like your username is not "Newbie".

    I know his username, you know too. His is a moderator , and uses the bad schema ''like link'', blame him first and then the newbies

  2. of another website and display it on my non-profit's website.

     

    The page's source code is on line 163 and is ( <td>1845.54</td>)

     

    if you have access to modify the code on the other website, you could give the variable ''number'' the value ''1845.54'' inside a script, and then dislpay that variable in your site. If you don't , maybe you could create a link to that td (i don't know how)

  3. A table is a bad idea. Back in the 90s when CSS didn't exist, tables were the only way to properly position content. But now we have much better ways to organize the page.

    as I can see the ''conversation'' up to now, a table could give a shorter and cleaner code

  4. I think that it is not the backround that youhave to change. You could change the opacity when the kensor is hover an image eg

     

    .overlay { background:rgba(0, 0, 0, .90); opacity:0;

    }

     

    .img:hover .overlay { opacity:1;

    }

     

    Imagine that the overlay is a glass above your images and it is transparent, and when the mouse is hover it the opacity changes from 0 to 1

    try it andtell me.

    css

    < then why we do not include the complete url that specifies the location of the css document instead we include only the name of the css document . This was my question ??

    Lets say that you want to make a website . Create a directory with the name Mywebsite. Put there all your files , including css, html, js, and wwhateve.Upload your directory to a server. Then is enough to ''call '' by using

    <link rel="stylesheet" type="text/css" href="mystyle.css">

    • Like 1

    css

    I mean that :

     

    your 65 html

     

    <!DOCTYPE html><html><head><meta charset="utf-8"><link rel="stylesheet" type="text/css" href="mystyle01.css"></head><body>

    <p class="class1p"> some text</p>

    </body>

    </html>

     

     

    and the in the css file (common for all the html's)

     

     

    .classs1p{

    background-color: green;margin: 15px;

    }

     

    Is that working?

    css

    just to name it (is taken from one of my codes). But i think that is working, althought davej said that can't be done with css

    css

    in your ''number 65.html'' you have to add a connection with your css file also a class for the paragraph eg classp1 . If your css file has the name ''mycssfile.css'', you have to add that in the html

     

    <link rel="stylesheet" href="mycssfile.css" title="style1" />

    also in your css file you have to refer to the class for your paragraph eg .classp1{

    color:green;

    }

  5. yes , when I restart my computer I find it to run. For some reason it stars automaticaly when I start my computer, but the autostart checkboxes are unchecked. Somewhere in an config file there must be a setting that I dont know.

  6. on that picture you can see the status of the control panel when I have close all the servers. It seems to me that all had been stopped. Hear is the comment on that screen : "Status change detected: stopped" post-180763-0-10849900-1426010260_thumb.png

  7. if register_globals is set to off, can someone use freely the software or not? Also if register_globalls is set to off, the risk is eliminated or not, and then the page is readable and working well?

     

    the prevous abstract is from the book ''PHP and MySQL Web Development'', Fourth Edition by Luke Welling and Laura Thomson, page 380

  8. I was reading a book and I saw that paragraph

    ''The only trick to these settings (..on php.ini)it that if you choose to use legacy software written inPHP, it may very well require that register_globals and/or register_long_arraysbe turned on. In this case, you must decide whether using the software is worth thesecurity risk.You can mitigate this risk by checking frequently for security patches andother updates for such software''

     

    The author does n't explain what could be the ''security risk''. Could anyone explain?

×
×
  • Create New...