Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~6K People Reached

39 Posted Topics

Member Avatar for web3

Variables vvi and hhi should be with for loop turned into vv1...vv30 and hh1, hh2...hh30. Now I can't get variables tv, lv, bv and rv to return the variable(vv1 or hh1...) value instead if I put vv into quotes it turns the variable into a string (with value: vv1 or …

Member Avatar for Troy III
0
185
Member Avatar for web3

I have a problem with my for loop. This is the code: [CODE] for(i = 1; i <= 30; i++){ var opacity = $("#h"+i).css("opacity"); if(opacity < 1){ $("#h"+i).click(function() { $("#h"+i).css({ opacity: 1 }); }); } }[/CODE] When I put a number like [CODE]$("#h1")[/CODE] instead of [CODE]$("#h"+i)[/CODE] It works but only …

Member Avatar for web3
0
101
Member Avatar for web3
Member Avatar for daviddoria
0
271
Member Avatar for canterorist

I agree with dereksy. Wordpress is for simple blogging and Joomla is for making a "real" site.

Member Avatar for nazar22
0
121
Member Avatar for web3
Member Avatar for web3

Can anyone tell me what GUI to use? And is there a GUI similar or same like standard library? Thanks in advance.

Member Avatar for Stefano Mtangoo
0
213
Member Avatar for ayesha789

In move_uploaded_file. Replace $uploadfile2 in: [CODE]move_uploaded_file($_FILES['userfile2']['tmp_name'], $uploadfile2)[/CODE] with a file name that you want.Example: [CODE]move_uploaded_file($_FILES['userfile2']['tmp_name'], $uploaddir2."file.pdf")[/CODE]

Member Avatar for ayesha789
0
1K
Member Avatar for web3

I am new to Javascript and I don't want to use frameworks. I found a tutorial on how to make this: [CODE]<html> <head> <title></title> <script src="jquery-1.4.2.js" type="text/javascript"> </script> <script type="text/javascript"> $(document).ready(function() { $("div#msgbox").hide(); $("#addComment").click(function (){ $.post('index1.php', { name:$("#name").val(), //PHP recognize it like POST comment:$("#comment").val() //PHP recognize it like POST }, …

Member Avatar for rajarajan2017
0
171
Member Avatar for web3
0
104
Member Avatar for web3

How to replace one backslash with two? This code doesn't work: [CODE] $msg = str_replace("\","\\",$msg); [/CODE] PHP will two backslashes insert into database as one. If is there one backslash it will return a parse error.

Member Avatar for kireol
0
108
Member Avatar for web3

What is the problem? [CODE]<?php /************************************************* Member Registration Script Author: Adam Khoury code comments appear above sections they refer to *************************************************/ // First we check to see if the form has been submitted if (isset($_POST['mem_firstname'])){ //Connect to the database through our include include_once "z_connect_to_mysql.php"; // Create local varibles from the …

Member Avatar for FlashCreations
0
151
Member Avatar for web3

Is it possible to make from exe file a web application? Here is the file i am trying to convert:

Member Avatar for Stefano Mtangoo
0
62
Member Avatar for web3

I made little javascript bbcode editor on my website. How to display that code from mysql? Or how to save in mysql as html that code?

Member Avatar for diafol
0
117
Member Avatar for web3

when i use <?php echo $_SERVER['PHP_SELF']; ?> in my forms the get values disappears. How to fix that? Is there some function?

Member Avatar for jcanaway
0
163
Member Avatar for web3

I can't access my old hosting account. I don't now my username. I now the domain and can i see PHP code on one page.

Member Avatar for Atli
0
102
Member Avatar for web3

How to make something like spry tabs in dreamweaver with jquery or something. I don't have dreamweaver and i don't want to download a trial.

Member Avatar for Atli
0
135
Member Avatar for web3

How to install Flash, Fireworks, Photoshop CS4 or CS3 on Ubuntu?Wine can't install it.I am using Ubuntu 9.10.And if it's possible no virtulization software.

Member Avatar for Crash~Override
0
68
Member Avatar for web3

I made star voting script and i was wondering how to display average result?

Member Avatar for mattsmomdotcom
0
77
Member Avatar for web3

I need to make a map of country Croatia seperated in regions and when you click one region it takes to a site that i made.

Member Avatar for pritaeas
0
70
Member Avatar for web3
Member Avatar for web3

I installed Apache2 but when I type [url]http://localhost/[/url] in browser it show an error "Unable to connect".

Member Avatar for sknake
0
142
Member Avatar for web3

I have a folder and i can't paste anything or save anything in it. Can i change permissions in terminal?

Member Avatar for Crash~Override
0
134
Member Avatar for web3

is there any way that php can show a person's webcam and their voice?

Member Avatar for diafol
0
43
Member Avatar for web3

I am making a forum and i was wondering how trough PHP make a HTML page off that topic when the user creates it.

Member Avatar for diafol
0
91
Member Avatar for web3

I installed lamp.But i can't delete my index.html page and i can't save any page in that folder.I am using ubuntu 9.10.

Member Avatar for sureronald
0
100
Member Avatar for web3

I have little upload script and i wonder how to rename a file if the file with same name already exists.

Member Avatar for hemgoyal_1990
0
86
Member Avatar for web3

My form worked, but when i put lastname(lname) field won't work [CODE]<?php include "connect.php"; echo "<h1>Register</h1>"; ?> <div style="color:#F00"> <?php date_default_timezone_set('Europe/Zagreb'); date_default_timezone_get(); ini_get('timezone.default'); getenv('TZ'); $num = 0; $submit = $_POST['submit']; $fname = $_POST['fname']; $lname = $_POST['lname']; $username = $_POST['username']; $email = $_POST['email']; $password = $_POST['password']; date_default_timezone_get(); $date = date("Y-m-d G:i:s"); …

Member Avatar for Will Gresham
0
147
Member Avatar for web3

When i put in this code WHERE to='$username' won't work? [CODE]<?php $connect = mysql_connect ("localhost","root","") or die (mysql_error()); mysql_select_db ("login4") or die (mysql_error()); session_start(); $_SESSION['username']; $username = $_SESSION['username']; $query = mysql_query("SELECT * FROM pm ORDER BY id DESC"); $message = '' ; while ($row = mysql_fetch_array($query)){ $id = $row['id']; $to …

Member Avatar for web3
0
112
Member Avatar for web3

I have a twitter clone and i was wondering how to display users tweets on his profile.

Member Avatar for CFROG
0
60
Member Avatar for web3

I have a little twitter clone but how to display messages from mysql from newest to oldest. [CODE]<?php session_start(); $connect = mysql_connect ("localhost","root","") or die (mysql_error()); mysql_select_db ("login4") or die (mysql_error()); $_SESSION['username']; $username1 = $_SESSION['username']; $username = $_POST['username']; $submit = $_POST['submit']; $micro = $_POST['micro']; $date = date("d-m-Y"); if ($submit){ mysql_query(" …

Member Avatar for Will Gresham
0
111
Member Avatar for web3
Member Avatar for shishtawitch

Go to your cpanel click add-on domain and add your domain. You must wait 48 hours before it's start to work.

Member Avatar for smartness
0
120
Member Avatar for web3

I now how to make a profile but how to make for every user when he logs to view button my profile and takes them to their profile.

Member Avatar for CFROG
0
98
Member Avatar for web3

Why it won't send this to mysql.Connection is ok.Here is the code. [CODE]<?php $connect = mysql_connect ("localhost","root","") or die (mysql_error()); mysql_select_db ("login4") or die (mysql_error()); session_start(); $_SESSION['username']; $username1 = $_SESSION['username']; $username = $_POST['username']; $submit = $_POST['submit']; $micro = $_POST['micro']; if ($submit){ $queryreg = mysql_query(" INSERT INTO messages VALUES ('','$micro','$username') "); …

Member Avatar for diafol
0
73
Member Avatar for web3

I have this 3 file for small chat and it works without database. But i was trying to connect to my database and use my users. Index.php [CODE] function createForm(){ ?> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <table align="center"> <tr><td colspan="2">Please eneter a nickname to login!</td></tr> <tr><td>Your name: </td> <td><input …

Member Avatar for Stefano Mtangoo
0
408
Member Avatar for sibt-i-hasan

Learn HTML on [url]http://www.w3schools.com/[/url] or there is a great video on youtube [url]http://www.youtube.com/watch?v=GwQMnpUsj8I[/url] (it is 40 minutes long)

Member Avatar for web3
-1
38
Member Avatar for web3

How to limit access on my page to unregistered visitors? Like that they can't open forum or users profiles?

Member Avatar for Will Gresham
0
68
Member Avatar for web3

How i put to my register error if user already exists. My code: [CODE]<?php include "connect.php"; echo "<h1>Register</h1>"; $num = 0; $submit = $_POST['submit']; $username = $_POST['username']; $password = $_POST['password']; if ($submit){ if ($username){ if (strlen($username) > 20){ $num ++; echo "<tr><td>".$num.". Username is too long.(3-20)</td></tr><br />"; } } if …

Member Avatar for Will Gresham
0
184
Member Avatar for web3

I have a register and login code, but i don't know when the user register to automatically make user page.Can anybody help me?

Member Avatar for Will Gresham
0
133

The End.