Forum: PHP 13 Days Ago |
| Replies: 4 Views: 229 Edited, removed!
EDIT: Glad you solved it! |
Forum: PHP 13 Days Ago |
| Replies: 4 Views: 229 What is the Code in functions.php on line 52? (the whole function if possible)
I think this is caused because you didn't create a instance of the class
$class = new YourClassName();
Or... |
Forum: MySQL 14 Days Ago |
| Replies: 6 Views: 465 --> mysql_real_escape_string (http://php.net/manual/en/function.mysql-real-escape-string.php)
--> Use htmlentities() for user submitted data!
when you get the id from the url:
$id =... |
Forum: PHP 16 Days Ago |
| Replies: 19 Views: 447 I don't know about his Skills, but a starter can't Code everything from scratch! Classes are coded by more experienced coders, and they are provided with examples...
If he (phpangel) wants to... |
Forum: PHP 16 Days Ago |
| Replies: 8 Views: 248 I use this in my projects:
http://www.evolt.org/node/60384 |
Forum: PHP 16 Days Ago |
| Replies: 19 Views: 447 It's better if you use ready classes... try: phpclasses.org |
Forum: PHP 17 Days Ago |
| Replies: 19 Views: 447 Well I'm a starter too, but I did my own cms, and has a lot of features!
Depending on what site it is, i can help you:
I can help you with the User Authentication/Login System, Admin Panel with... |
Forum: PHP 20 Days Ago |
| Replies: 3 Views: 208 Add/Replace the files inside your /htdocs/ folder, i think that's the default home directory for Apache |
Forum: C++ 26 Days Ago |
| Replies: 4 Views: 195 Mmm. well I can't tell you what the book says (it's albanian), i maybe could paint some formulas with paint, but I don't know which would help you?
p.s. I'm learning these in C++, not math (i know... |
Forum: C++ 26 Days Ago |
| Replies: 4 Views: 195 Can someone help me to solve this algorithm, I tried our school book but can't understand it. I'm not good at math!
Should be simple, but i just can't understand it!
... |
Forum: PHP Sep 19th, 2009 |
| Replies: 12 Views: 567 Look at the post above yours mate! i posted the code, didn't it work???? |
Forum: PHP Sep 19th, 2009 |
| Replies: 12 Views: 567 Currently, when you're on Page 9, the link is displayed like this:
«« First « Prev 6 7 8 9 10 11 12 13 14 Next » Last »»
This is better, cuz the visitor will have the last 3 previous page, and... |
Forum: PHP Sep 16th, 2009 |
| Replies: 7 Views: 257 |
Forum: PHP Sep 16th, 2009 |
| Replies: 7 Views: 257 This works for me, this sent me to:
http://localhost/bookview.php?id=4&hn=victory
<?php
$row['bookingref'] = "4";
$row['hotelname'] = "victory";
echo '<button type="button"... |
Forum: PHP Sep 15th, 2009 |
| Replies: 3 Views: 287 Yep, I'd suggest Wamp to, 1 click installing:
http://www.wampserver.com/en/index.php |
Forum: PHP Sep 15th, 2009 |
| Replies: 3 Views: 381 <?php
global $db;
$array = $db->fetch_array_from_query("Stuff here");
echo "<pre>";
print_r($array);
echo "</pre>";
?>
Try this and you will get a "clear view" of the... |
Forum: PHP Sep 15th, 2009 |
| Replies: 11 Views: 398 I would suggest this, i use it everywhere (in my projects):
http://www.ricocheting.com/scripts/php_mysql_wrapper.php |
Forum: PHP Sep 15th, 2009 |
| Replies: 16 Views: 685 I use the class on the attachment to backup my CMS! |
Forum: PHP Sep 15th, 2009 |
| Replies: 2 Views: 397 Where do you get the e-mails from? Mysql?
If yes, then i would suggest:
add a "lastsent" field, and each time you send a e-mail, update that field with a time().
So before you sent emails... |
Forum: PHP Sep 15th, 2009 |
| Replies: 7 Views: 264 Yep, I can help...
I need to know the db fields & where/what you want to use! How you wan't it displayed etc...
are you trying to output rss feeds or what? |
Forum: PHP Sep 15th, 2009 |
| Replies: 12 Views: 567 I use this function to paginate:
<?php
if(isset($_GET["page"])) {
$page = $_GET["page"];
} else {
$page = 1;
}
$totalPages = 1000; |
Forum: PHP Sep 15th, 2009 |
| Replies: 1 Views: 378 I don't know if i understand you, but can you try this:
<table id="sampletable">
<tr>
<?php foreach ($Report_attrid as $report1): ?>
<td id="headerid<?php echo... |
Forum: PHP Sep 15th, 2009 |
| Replies: 20 Views: 435 Are you using wamp? If yes, i get the same error too :D |
Forum: PHP Sep 15th, 2009 |
| Replies: 4 Views: 260 $productId = (int)$_GET['productId'];
and you have the SQL Condition:
so lets say $_GET['productId'] = 2;
it means $productId = 2;
the query:
$sql = "UPDATE tbl_product SET cat_id =... |
Forum: PHP Sep 14th, 2009 |
| Replies: 4 Views: 223 |
Forum: PHP Sep 14th, 2009 |
| Replies: 9 Views: 335 Can i have a DB with some data, would like to test on localhost! |
Forum: PHP Sep 14th, 2009 |
| Replies: 3 Views: 241 This:
urlencode (['$logic'])
Should be:
urlencode ($logic)...
Whole code:
<?php
if (empty($_GET['q'])){ |
Forum: PHP Sep 14th, 2009 |
| Replies: 4 Views: 223 add this after $newUrl:
echo '<a href="'.$newUrl.'">Link Text Here</a>';
or this:
echo "<a href=\"$newUrl\">Link Text Here</a>";
its the same |
Forum: PHP Sep 14th, 2009 |
| Replies: 3 Views: 175 Your welcome... I'm a beginner tooo. p.s. click solved or change the title to [Solved] + Title... |
Forum: PHP Sep 14th, 2009 |
| Replies: 9 Views: 335 Use:
$query = mysql_query("SELECT COUNT(*) FROM `search`", $connection);
instead of:
$query = mysql_query("SELECT * FROM `search`", $connection);
mysql
$count = mysql_num_rows($query); |
Forum: PHP Sep 14th, 2009 |
| Replies: 24 Views: 841 i think this has something with .htaccess to do...
You must rewrite:
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteRule ^picture/([a-zA-Z0-9.,!_-]+)$ avatar.php?id=$1... |
Forum: PHP Sep 14th, 2009 |
| Replies: 3 Views: 175 <?php
$ser = $_GET['q'];
$logic = "~resume (filetype:pdf OR filetype:doc OR filetype:rtf OR filetype:htm OR filetype:html) skill -jobs -apply -submit -required -wanted -write -sample";
$logic =... |
Forum: PHP Sep 14th, 2009 |
| Replies: 21 Views: 535 try this:
<?php
//The button is presed
if (isset($_POST["submit"]))
{
$name = $_POST['name'];
$email = $_POST['email'];
$question = $_POST['question'];
$message = "Message from... |
Forum: PHP Sep 14th, 2009 |
| Replies: 3 Views: 238 \n will not give you a line break if you use single quotes...
Do not use $string = 'Something \n';
instead use$string = "Something \n"; Now \n will be a line break (in html of course... Use... |
Forum: PHP Sep 14th, 2009 |
| Replies: 4 Views: 306 Do you wan't to mass mail, or just a single email? |
Forum: PHP Sep 14th, 2009 |
| Replies: 3 Views: 215 $array = $_POST;
foreach($array as $values => $value) {
//echo $value.'<br />';
$value = trim($value);
//Everything except the "sumbit" button
if($value != "Submit") {
$result =... |
Forum: PHP Sep 14th, 2009 |
| Replies: 4 Views: 340 this? if yes, write these in the somewhere in the top of your file, so you can use them everywhere!
<?php
//First
$something = $_GET["something"];
echo $something;
//You may use this:... |
Forum: PHP Sep 14th, 2009 |
| Replies: 1 Views: 220 I need a mysql user authentication class with only 3 user "levels"
1. Admin
2. Registered (or normal) user
3. Guest
I tried phpclasses.org but couldn't find a good one (maybe i didn't try... |
Forum: PHP Aug 10th, 2009 |
| Replies: 8 Views: 2,442 Thanks Raphie, but this thread is to old, and i have more knowledge in php now, but in fact I didn't continue that script cuz i got stuck!
So thank you very much for your time...
(as for me)... |
Forum: JavaScript / DHTML / AJAX May 15th, 2009 |
| Replies: 9 Views: 2,545 Doesn't work:
Firefox 3.0.10, error console: |