alex1985
Members-
Content Count
398 -
Joined
-
Last visited
Everything posted by alex1985
-
I am going to major in finance and banking, and I need a couple of books that might help in the future, lets say at workplace.I am searching for the books that teach you different applications such as Microsoft Excel and Access with Finance, in other words, how to conduct and record finance activities. If you know some, list them over here. Only the good ones please, qualitative ones that are really good to follow those teaching steps.
-
Thanks. I think I am going to try it soon and then post a reply concerning such issues.
-
Thanks. I think I am going to try it soon and then post a reply concerning such issues.
-
I am not actually the best one, just learning the things step by step.
-
Just, if you can, give the links in this topic.
-
And for me as well!!!
-
The code itself just creates database values, I need the one that counts, the code that links those two databases.
-
Sending E-mails After News Update? Coding needed??
alex1985 replied to alex1985's topic in Programming
Can you write the whole thing, please? -
I did not get it clearly! For which puposse the function is used?!
-
All right. What's about this code: <?phpinclude("config.php");if($submit){$title=$_POST['title'];$text1=$_POST['text1'];$text2=$_POST['text2'];if($title) {echo "Error: News title is a required field. Please fill it.";exit();}$result=mysql_query("INSERT INTO books (title, dtime, text1, text2) VALUES('$title',NOW(),'$text1','$text2')",$connect);echo "<b>Thank You! The book was added successfuly!<br>You'll be redirected to Home Page after (4) seconds";echo "<meta http-equiv=Refresh content=4;url=index.php>";}else{?><br><h3>Add Books</h3><form method="post" action="?php echo $PHP_SELF ?>">Title: <input name="title" size="40" maxlength="255"><br>Text2: <textarea name="text2" rows="7" cols="30"></textarea><br><input type="submit" name="submit" value="Add News"></form><?}?> Your suggestions of correct and improvement is neeeded
-
I'm a novice, just when you finish write your code for it as well.
-
Hi, I getting this mistake, I do not know why, the code itself looks fine and right: Parse error: syntax error, unexpected $end in /home/alex1985/public_html/mulhim/library_project/test_dir/test1/admin/addbooks.php on line 12 <?phpinclude ("../config.php");if ($_GET['login']) { #checks for admin login$user=trim($_POST['user']); #trim the admin user in case of mistake$pass=trim($_POST['pass']);str_replace("username", "password", $srt);if ($user == "username" && $pass="password") { #if username and password match, then show posting formsession_register('username'); #starts an admin section onlyecho "Welcome, please post books' entries $user<br>Or: ";?><a href="editnews.php'>Edit News/Delete News</a>
-
You, guys, to give up against my questions?!
-
Explain me the following line;
-
Oh thanks, I really appreciate it!
-
Listen, but I did not find any of those downloading link over there.
-
Anymore suggestions?
-
That's clear, but what is the code?
-
Wait, many templates are actually based on CCS. Do you know anything about this issue?
-
If there is other way to solve this problem, because I think I already did it!
-
I created this topic mainly because I wanna get a clear interpretation about those listed PHP functions. The first function is while($row=mysql_fetch_array($query)) {
-
I need your feedback about setting the database issues. Please, review them and correct some entries in the code if they got some mistakes.This is the code itself: CREATE TABLE `news` ( `id` int(250) NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `text` text NOT NULL, `author` varchar(255) NOT NULL default '', `valid` varchar(255) NOT NULL default '', `date` varchar(255) NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM ;
-
I installed a CMS which is called Slaed. This is the mistake I am getting on the main page: How can I solve it? Your suggestions?
-
Just, show me the sample code if you can.
-
Listen, I would like to create some menu which list categories describes the news that category contains as well as sub-category below it. So, the questions is how I can count the number of news or items in the category or sub-category?This is example:Books (100)-Finance (25)-Biology (75)Any ideas?