Jump to content

beegro

Members
  • Posts

    69
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male

beegro's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Assuming you're doing this session_set_cookie_params(0, "/", ".weblyize.com", false); in the parent domain. Then the session should work unless your subdomain is on a different box. If it's on a separate box you'll have to figure out how you want to share the session files between them. I'm sure you already know this but I'm just reiterating it to be thorough.
  2. Try removing the actual numbers out of the html array. PHP will assign the numeric indexes for you appropriately. <input type="text" name="hdds[][hddbrand]" id="hddbrand"><br/> Model and/or size,type: <input type="text" name="hdds[][hddtype]" id="hddtype"><br/> SN: <input type="text" name="hdds[][hddsn]" id="hddsn"><br/> Notes: <input type="text" name="hdds[][hddnotes]" id="hddnotes" size="50">
  3. Let me know if I'm missing something but why wouldn't you just use a 2-dimensional array like $elem['Date1'] = array('event1', 'event2', 'event3');
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.