Jump to content

jonaofarc

Members
  • Posts

    48
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jonaofarc's Achievements

Member

Member (2/5)

0

Reputation

  1. how can I make this array Array ( [0] => e2acfb0606d1e8f994b687fd8de5b032 [jewpage_id] => e2acfb0606d1e8f994b687fd8de5b032 [1] => lo [name] => lo [2] => ocation... [description] => ocation... [3] => 0000-00-00 [date] => 0000-00-00 [4] => asd [address] => asd [5] => [contact] => [6] => 41.1265328 [log] => 41.1265328 [7] => -74.0640814 [lat] => -74.0640814 [8] => GA [state] => GA [9] => MONSEY [city] => MONSEY [10] => 91401 [zip] => 91401 [11] => upload/e2acfb0606d1e8f994b687fd8de5b032 [pic1] => upload/e2acfb0606d1e8f994b687fd8de5b032 [12] => upload/e2acfb0606d1e8f994b687fd8de5b032 [pic2] => upload/e2acfb0606d1e8f994b687fd8de5b032 [13] => 10 [post_user] => 10 [14] => Wytr [type] => Wrty [15] => [section] => [16] => expensive [price] => expensive [17] => [homepage] => [18] => 0 [rating] => 0 [19] => 0 [category_id] => 0 ) look like Array ( [0] => Array ( [jewpage_id] => e2acfb0606d1e8f994b687fd8de5b032 [name] => lo [description] => ocation... [date] => 0000-00-00 [address] => 250 Kearsing Pkwy [contact] => [log] => 41.1265328 [lat] => -74.0640814 [state] => GA [city] => MONSEY [zip] => 91401 [pic1] => upload/e2acfb0606d1e8f994b687fd8de5b032 [pic2] => upload/e2acfb0606d1e8f994b687fd8de5b032 [post_user] => 10 [type] => Wedding Flowers [section] => [price] => expensive [homepage] => [rating] => 0 [category_id] => 0 ) )
  2. a mysql database session ... Iam building a rendering engine that will be placed on a server cluster and as embarrasing as it sounds Ive never heard of the term. "where did you initilize the mysql database session?" I really could use some clarification
  3. this was mentioned to me this morning... Ive never heard of a database session, searched around and nothing came up...
  4. caching html output / outpus consistency on cluster, basically id like to cache an html file that will remain constant on a cluster of servers ... so when we have a featured item all servers will have the same featured item...
  5. yeah but Id like different ones so I could better understand their flow
  6. Iam looking for an object map kinda like http://www.phpmvc.net/docs/guides/art-101/SalesReportObjectMap.png
  7. can anyone show me a good example of a class / object map? Iam interested in seeing some good examples of a class object map . does one list all functions that are encompassed within the class? like class.car / function - get.keys();
  8. does anyone know the default directory were to keep the ssh keys for putty?
  9. Fatal error: Call to undefined function imagegrabwindow() so that happens because gdlib is comment in the php file so I tried to uncomment it however in my php.ini file on my wamp server there is no gdlib 2 dll to uncomment...
  10. corbin.. any ideas where can I find the saved images? I did as you asked regarding the apache
  11. no I ran in on windows XP but nothing happens .. how do you allow ? or what code to I put in the httpd.conf to allow interaction with the desktop?
  12. Basically Iam trying to use the imagegrabwindow() however when this scripts run were does it save the PNG to? nothing seems to happen and no file is added in the files directory. <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Navigate("http://www.libgd.org"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle, 0); $browser->Quit(); imagepng($im, "iesnap.png"); ?>
  13. $employees = array ( "employee 1" => array ( "name" => "Dana", "title" => "Owner", "salary" => "$60,000", ), "employee 2" => array ( "name" => "Matt", "title" => "Manager", "salary" => "$40,000", ), "employee 3" => array ( "name" => "Susan", "title" => "Cashier", "salary" => "$30,000", ) ); I want a simple loop that replaces anyone with the name dana to the color green
×
×
  • 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.