Search Results

Showing results 1 to 40 of 72
Search took 0.01 seconds.
Search: Posts Made By: sacarias40
Forum: RSS, Web Services and SOAP 32 Days Ago
Replies: 8
Views: 734
Posted By sacarias40
Would you have any names so it keeps my searching to a minimum? Thank you, much regards.
Forum: RSS, Web Services and SOAP 32 Days Ago
Replies: 8
Views: 734
Posted By sacarias40
I just would like to keep everything on my wesite. i dont want to redirect to any other website for payment, isnt that what a payment gateway does do?
Forum: RSS, Web Services and SOAP 33 Days Ago
Replies: 8
Views: 734
Posted By sacarias40
Hello,

it has come time for me to be able to accept a credit card/multiple credit cards on a website.

I ask you guys to guide me in the correct direction to doing this.

I do not want to use...
Forum: JavaScript / DHTML / AJAX May 25th, 2009
Replies: 6
Views: 381
Posted By sacarias40
Forum: JavaScript / DHTML / AJAX May 25th, 2009
Replies: 6
Views: 381
Posted By sacarias40
i have a string like this:


location = '#http://www.website.com';

how can i take off that hash sine?
regards
Forum: Site Layout and Usability May 24th, 2009
Replies: 4
Views: 592
Posted By sacarias40
don't use tables, use divs


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">...
Forum: PHP May 23rd, 2009
Replies: 3
Views: 373
Posted By sacarias40
and you need to escape your parenthesis
Forum: PHP May 23rd, 2009
Replies: 7
Views: 561
Posted By sacarias40
alright that sounds fair. im here if you need me.
Forum: PHP May 23rd, 2009
Replies: 7
Views: 561
Posted By sacarias40
if you would like i can send you a paginator class that i made if that would help you.
Forum: PHP May 23rd, 2009
Replies: 7
Views: 561
Posted By sacarias40
you could go like this.....

$string = 'this is a small sample sentence that should be split up';
$words = explode(' ', $string);

for($i = 0; $i = count($words); $i++){
echo $words[$i] . '<br...
Forum: PHP May 23rd, 2009
Replies: 7
Views: 561
Posted By sacarias40
well you could use a paginator
and count the number of words in the entire 'book' then each word i part of an array and you just output a certain number of array items per page.....specified in the...
Forum: PHP May 20th, 2009
Replies: 4
Views: 475
Posted By sacarias40
yeah i see that. oh well.

i have attached my error as an image.

and here is my code.


<?php

if(isset($_POST['upload'])){
Forum: PHP May 20th, 2009
Replies: 4
Views: 475
Posted By sacarias40
I was wondering if it was possible to upload say a picture file and a text file and in the script put them into a zip file programatically.

if this is possible could you offer some tips or links...
Forum: C++ May 15th, 2009
Replies: 1
Views: 425
Posted By sacarias40
i need to know how to make a string variable in C++

i need to hold the file path of the desktop on a variable.

in vb.net it would be like this: dim path as string = "path\to\desktop"
Forum: Graphics and Multimedia Apr 5th, 2009
Replies: 5
Solved: Bubble textbox?
Views: 1,159
Posted By sacarias40
i know how to do it now thanks every one
Forum: HTML and CSS Mar 25th, 2009
Replies: 0
Views: 326
Posted By sacarias40
http://www.qblogs.comuv.com
go to that site and check out the navbar at the top. i have some problems with it.

in firefox, at some zoom levels, the matrix missaligns itself and is out of line and...
Forum: JavaScript / DHTML / AJAX Mar 17th, 2009
Replies: 4
Views: 424
Posted By sacarias40
you should look into jquery. its a javascript framework that has a lot of neat functions built in. it makes js much more easy to digest.
Forum: PHP Mar 17th, 2009
Replies: 3
Views: 347
Posted By sacarias40
Thank you this is a very helpful post. I've actually never used a CMS before but i have an idea of what one looks like from some pictures.

keep them coming if you don't mind. lol
any more site to...
Forum: PHP Mar 16th, 2009
Replies: 10
Views: 686
Posted By sacarias40
Forum: PHP Mar 16th, 2009
Replies: 10
Views: 686
Posted By sacarias40
Forum: JavaScript / DHTML / AJAX Mar 16th, 2009
Replies: 2
Views: 832
Posted By sacarias40
all you need to do is have a row in your db called active. then you can run a query on your db with "php" it would look for all members with the value as online.
Forum: PHP Mar 16th, 2009
Replies: 3
Views: 347
Posted By sacarias40
Does anybody know where i could get some information or guides on designing my own CMS???
Forum: PHP Feb 15th, 2009
Replies: 11
Views: 1,500
Posted By sacarias40
its not that HTML styling causes problems, its just that it is shunned apon in the web development wold. im with you where it doesnt cause problems. however using css is much better. it can be...
Forum: PHP Feb 13th, 2009
Replies: 11
Views: 1,500
Posted By sacarias40
yeah you should only have session_start() in the file once and it needs to be at the *very top, right after the opening php tag.

also i suggest learning CSS. instead of using HTML styling

it...
Forum: PHP Feb 13th, 2009
Replies: 11
Views: 1,500
Posted By sacarias40
if($_SESSION['logged']==""){
header("location: pleaselogin.php");
}else{
//is session is equal to something
}
Forum: PHP Feb 11th, 2009
Replies: 5
Views: 368
Posted By sacarias40
i found what i was working on a few weeks ago.
i was trying somethings. if you were to run this in a browser it will be "easy to understand" atleast i hope.

idk hopefully you see what i was...
Forum: PHP Feb 10th, 2009
Replies: 5
Views: 368
Posted By sacarias40
Well i understand how to do it - algorithm wise, but im newer to PHP or just (code) in general.
but im confused on the built in function part. like date(), and adding dates and subtracting dates and...
Forum: PHP Feb 10th, 2009
Replies: 8
Views: 1,381
Posted By sacarias40
wrote this really quick for yah hope this helps. hope i didnt make any errors


<?php
session_start();
function make_safe($string){
return mysql_real_escape_string(trim($string));
}

//check...
Forum: PHP Feb 10th, 2009
Replies: 5
Views: 368
Posted By sacarias40
im working on a site and i would like to display the newest members within 30 days. how would i do this.

im using mysql database. when the person signs up, it records the current date into their...
Forum: PHP Jan 25th, 2009
Replies: 8
Views: 761
Posted By sacarias40
i like how you did that, thats neat how you basically make your own tags. thank you.
ill have to put this into my designs sometime
regards!
Forum: Site Layout and Usability Jan 24th, 2009
Replies: 3
Views: 794
Posted By sacarias40
it makes it all the way to the part where it cannot find any users with these credentials and therefore nobody gets logged in
Forum: Site Layout and Usability Jan 24th, 2009
Replies: 3
Views: 794
Posted By sacarias40
i cant see an error


<?PHP

session_start();

if (isset($_POST['Submit'])) {

$email = $_POST['email'];
Forum: PHP Jan 22nd, 2009
Replies: 8
Views: 761
Posted By sacarias40
how do i send you a pm
Forum: PHP Jan 21st, 2009
Replies: 8
Views: 761
Posted By sacarias40
ok that would be much apreciated if you could do that for me

regards!
Forum: PHP Jan 19th, 2009
Replies: 8
Views: 761
Posted By sacarias40
well im just starting to learn OOP with php.
idk what is the best way to do it. the examples about cars and bycicles work n stuff but now im ready for something more.
Forum: Site Layout and Usability Jan 17th, 2009
Replies: 2
Views: 963
Posted By sacarias40
im using digivendor now, which is integrated into paypal.
thanks for the help!
regards
Forum: PHP Jan 17th, 2009
Replies: 8
Views: 761
Posted By sacarias40
i am designing a few pages. the pages have a few main divs and that is how i am inserting the background(with css)
i can render the whole background to the browser but i dont get how to nest divs...
Forum: Site Layout and Usability Jan 14th, 2009
Replies: 2
Views: 963
Posted By sacarias40
i am trying to set up a site and i only need to sell about 3 products. what would your guys' best opinions be that i handle this in.

i am using php

PS.
the products would be downloads.
Forum: MySQL Jan 11th, 2009
Replies: 3
Views: 440
Posted By sacarias40
ok here is what worked.

$sql = mysql_query("INSERT INTO shoutbox (user_id, username, message) VALUES('$user_id', '$username', '$message')");
Forum: PHP Jan 11th, 2009
Replies: 2
Views: 385
Posted By sacarias40
thank you for your help. how dumb it was
Showing results 1 to 40 of 72

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC