-
Content Count
437 -
Joined
-
Last visited
About leiaah
-
Rank
Super Member
- Birthday 11/29/1985
Contact Methods
-
Website URL
http://leahgorospe.qupis.com
Profile Information
-
Location
Koronadal City, Philippines
-
Interests
music, web stuff, movies, pop culture
-
People Can Ask For Site Reviews? How Bout Mine?
leiaah replied to leiaah's topic in Websites and Web Designing
Thanks for your comments guys, they're really helpful. Yes, I'm having difficulties with the background and I've even changed it this morning, sigh... Does anyone have a suggestion for the color? (in hex or maybe a background image perhaps). -
I've redesigned my website - from graphics to the CSS layouting. I was planning on a website that would look personal not commercial, with a home-cooked feel. I ended up with a pretty simple and straightforward design. I'm afraid it looks a bit packaged now, kinda like what you'd get with ready-made blogs out there. I'm making a layout number 3 but I'm sticking with this one for a while if I get not-too-terrible reviews, heehee.Anyways, I feel like I'm writing my own review here So what do you guys think?Thanks in advance.
-
What Are You Listening To? yeah I am surprised it isnt up here
leiaah replied to spawn_syxx9's topic in Art & Creativity
I'm listening to Someone still loves you Boris Yeltsin. Yes, it's the name of a cool band. I just discovered this band by accident while following some link on some guys blog.They released their album "Pershing" last month and I've been loving them ever since :lol:My fave songs off the album:Trk 1. Glue Girls, Trk 7. Think I wanna die (super catchy-pop!), Trk 10. HeersGo check them out! -
My new laptop is running on Vista and installing Apache, MySql and PHP was hell. I've tried googling for tutorials on how to get the services working but still nothing.It was after a few days of tweaking the php.ini and httpd.conf which all amounted to nothing when someone recommended WAMP, a software that installs all 3 applications to machines that run on Windows. I thought there would be problems with Vista but surprisingly I didn't get any. I don't have to configure the php.ini anf httpd.conf and all 3 are working fine now. So yeah, go get WAMP especially if you machine runs on Vista. I'm planning on installing XP on my machine but I'll probably still use WAMP for it since it's easier
-
Ooh! I love Total Video Converter! Aside from the formats supported by this software which zer000s has listed, it can create Photos Slide Show which pretty much allows you to well, make slide shows with the background audio of your choice (it does all the transition from pic to pic). Coincidentally, only 15 minutes ago I uploaded a video on youTube created using Total Video Converter' Photos Slide Show and the quality, I thought, was awesome. I love it! Ooh! and I use it for converting videos to 3gp or mp4 formats for my phone also.
-
I saw 10,000 BC last night. I suppose it was okay. The special effects were great but I guess I was hoping for a great plot line for such an epic movie. Hmm, 6.5 out of 10 maybe?
-
You can use the SQL statement for creating a table. Jlhaslip posted the code below. You simply need to change the tablename to the name you want (users to table1). CREATE TABLE `users` (`name` varchar(20) collate latin1_general_ci NOT NULL,`date` datetime NOT NULL,`message` varchar(100) collate latin1_general_ci NOT NULL,PRIMARY KEY (`name`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
-
I made templates so it would be easier for me to create PHP pages with database connectivity To insert data into a table (assuming you've already created a database with a table called table1) <?php $name=$_POST['name']; $msg=$_POST['msg']; $date = date('Y-m-d , h:i:s',time()); $name = addslashes($name); $msg = addslashes($msg); @ $db = mysql_pconnect('localhost', 'username', 'password'); if (!$db) { echo 'Error: Could not connect to database. Please try again later.'; exit; } mysql_select_db('databasename'); $query = "insert into table1(name,date,message) values ('".$name."', '".$date."','".$msg."')"; $result = mysql_query($query); if ($result) echo 'Entry has been Posted.'; ?> To view data from a database table <?php @ $db = mysql_pconnect('localhost', 'username', 'password'); if (!$db) { echo 'Error: Could not connect to database. Please try again later.'; exit; } mysql_select_db('databasename'); $query=mysql_query("SELECT name,date,message FROM table1"); while($row=mysql_fetch_row($query)){ echo "Name: ". $row[0]."<br>"; echo "Date: ". $row[1]."<br>"; echo "Message: ". $row[2]."<br>"; }?> Hope this helped!
-
I just got a compaq presario. I guess it's okay. It's one of the relatively cheap ones being sold here in the Philippines. It has a dual core processor, 1gb of memory, but only 80 gb of HD space though but I plan on buying an external because they're very cheap now, so yeah. Acer also has relatively cheap ones too, you might want to check them out. Anyways, good luck
-
I use mostly Yahoo Messenger becuase most of my friends have Yahoo accounts but I use meebo.com so that I can handle my accounts with different messengers (MSN, IRC).
-
Saint_Michael started following leiaah
-
Try this one. The while statement continually queries in the database while there are query results then prints the results in the screen using echo. if( isset( $_POST['selectsort'] )) { $query = "SELECT * FROM contracts ORDER BY '{$_POST['selectsort']}' DESC"; $result = mysql_query($query); while($result_rows = mysql_fetch_row($result)){ echo 'field 1 value: '.$result_rows[0]; echo 'field 2 value: '.$result_rows[1]; echo 'field 3 value: '.$result_rows[2]; }}
-
Problem With A Mysql Join Problem with a mysql join
leiaah replied to eskimmer's topic in Programming
Something like this perhaps (assuming your query is correct).. $result = mysql_query("SELECT placing_item_bid.category_id, category_master.icon_1FROM school_auction.category_master,school_auction.placing_item_bidWHERE placing_item_bid.category_id=category_master.category_id and category_master.icon_1=category_master.icon_1");while($row=mysql_fetch_row($result)){ $img=$row['icon_1']; echo '<img name="runimg" src="images/'. $img .'">';} -
Problem With A Mysql Join Problem with a mysql join
leiaah replied to eskimmer's topic in Programming
Should it display all the results from the query? Maybe you should create a loop statement so that it will display ALL results instead of just displaying the last result row. -
I had loved Little Women by Louisa May Alcott, Great Expectations by Charles Dickens, the Catcher in the Rye by JD Salinger, Pride and prejudice by Jane Austen (Darcy and Elizabeth!). I'm reading Emma right now and i can't get pass the first few chapters! Oh well!