Jump to content

divinedesigns1

Members
  • Posts

    1,200
  • Joined

  • Last visited

Posts posted by divinedesigns1

  1.  

    I've been in the business for close to 10 years and re-designed the site a few times. I'd like to know as a perspective client what do you think of my site? (where/how things are places, pages, text)

    http://vchrisstudio.com/

    Thanks

     

    its a nice template very unique, straight forward, appealing, etc. only problem i had was finding the menu, which was located at the bottom of the page, and after i was pretty much finish looking through the website i notice the button at the top of the page, besides that i think it was a well planned website

  2. Thanks all for your comments...

     

    What I mean is, that with that codes everything is working fine on the same script.....

    that script is name : admissions.php and if everything works fine then it calls itself.

    That's working perfect, but in my side.... I mean, working fine using my PC, but when I uploaded to my hosting, then the only thing that fails is that part : header("Location: admissions.php?success");

    that part is not reloading the page again, or in other words, no calling again the script admissions.php with ?success

    .

    do what justsomeguy said, localhost and your domain host process stuff differently at times so making your error display is best to fix it on ur domain host

  3. basically what you're asking for is a progress indicator/meter.

    https://www.google.com/#gs_rn=17&gs_ri=psy-ab&tok=wAKbgBk-NUaKZkBwfImhxg&cp=8&gs_id=w&xhr=t&q=CSS+progress+bar&es_nrs=true&pf=p&safe=off&sclient=psy-ab&oq=CSS+prog&gs_l=&pbx=1&bav=on.2,or.r_cp.r_qf.&bvm=bv.48705608,d.cGE&fp=cdc21b7370938cfe&biw=1440&bih=779

     

    Its all about determining how much you have / how much you need. The resulting percentage will determine the amount of fill.

     

    After that, its a matter of translating that in the UI, using images and/or CSS.

    whats UI?

  4. I don't know what you're asking.

    ok, i have a bottle or image of a bottle and i want it to be fill with water, but it can only be fill unless the database have data in the table, so if theres like 600 different type of data is in the database, the bottle/image of the bottle starts to full until it gets to the top

  5. hey guys, is it a way to fill a object say a bottle and its being fill with the data from the database?

     

    like if you have the bottle and your filling it up with some water, and the more data that is in the database the more the bottle get fill

     

    is there a way to do this?

  6. The session "$_SESSION['date']" isn't created on index.php page, its removed if it exists.

    i believe it need to be define before it can be removed

  7.  

    Yes i have session in index.php Also i have jquery script that updates the data with get method every 2s.

    This function will be runned in every 2s the cat variable has been created and can be changed with jquery.	function showContent() {	$.get('data.php?category=' + cat function(data) {			if (data != "NOUPDATE") {				$('#mydiv').html(data);			} 		});	}

    what about defining the session on the index page?

  8.  

    Hi niche, dsonesuk and DDs1,
    Here is the Updated version of CODE. Before seeing the CODE from your Browser, I would request you to Download and Keep the "MyDesign.png" file Opened from your MS Paint to View it 100%.
    So, am I doing it Correct? Do I need to Change anything? What should I do?
    Please help.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><body>......</body></html>

     

    why do you have so many breaks?

  9. Alright so now i have problem with my code. Ill explain bit

     

    Index.php

    This basically receives data by jQuery get method, lets say from file name "data.php?cat=potato" and in flight i may change the receive get to data.php?cat=carrot

    Data.php

    //Alright so here i have the problem. I'm starting the sessions like this.session_start();$cat = $_GET['category'];$query_get_data_latest_date = "SELECT * FROM ms_date WHERE category = '$cat' ORDER BY DESC LIMIT 0, 1";$result blablabla... you know it$row_date['date'] //This returns to latest date value (Correctly)$_SESSION['date'] = $row_date['date']; //Returns older value gained before changing WHERE at query.

    So basically $_SESSION['date'] sticks to first value created by session and will not update.

     

    do you have a session_start(); in the index.php? because you didnt mention if you did or didnt, also do you have a query which update the data?

  10. Hi DDs1, Thanks for your Response. But how do Incorporate those Border Frames which is at the Top Segment? So, you mean I should put 1 Container and 3 DIVs with FLOAT attribute? Kinda I am little bit Confused. Not able to Decide how to Start it.
    pay attention to how the png template is set up, and start from there, its pretty much a simple template if u actually pay attention to it, because u pretty much want a,b,c div to be and have x
    • Like 1
×
×
  • Create New...