- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
27 Posted Topics
Dear All, (first of all I am a beginner!!!) I have a project single-page web application (php, mysql, jquery, angularjs). I have questiong regarding angularjs and php how to pass url parameter to php variable? public_profile.php?user_id=7 I know basics of angularjs routing, and it works fine. The problem is when … | |
Hello all, I have an MS SQL table. There are two columns I need to work on: HOURS_DURATION and MINUTES_DURATION. They are of INT type. As you may see in the photo I am attaching: [TABLE SAMPLE IMAGE](http://prntscr.com/8gzg7c) Now, I am making a fast report. And for now I have … | |
Hello all, I would like to make a simple search input field... something like google search on top of the screen when you sign into your gmail account.. you can see it here[Click Here](http://prntscr.com/5ehef7) Because I had troubles trying to achieve it... I came up with a funny semi solution... … | |
Hello, by using [GOOGLE PLAYGROUND](https://developers.google.com/oauthplayground/) we can see the flow of how oauth2 works.. ok, I understood.. my question is: is it possible to validate google access token via php form by submittin email address and Token? Thank you! | |
Hello all! Can someone help with this matrix? it needs to spiral inwards, from bottom right corner, clockwise... I found this code... and it runs nicely but I need to adapt it in some ways: - I should be able to provide number of rows and columns - the grid … | |
Hello, I need to make a script that will generate a spiral html table.. user should be able to enter number of rows and columns... and a spiral should appear... and I havent a clue... can someone give me some hints? some ideas? PLEASE! thanks ![]() | |
Hello all, I need to validate google oauth2 access token... I found one script online but it is stuck on cURL function... I suppose JSON to ARRAY conversion or something similar.. but I dont know how to solve it.... can anyone show me? PLEASE!!! when I run it... it gives … | |
Hello, I got an assignement: to validate a google oauth2 access token using email address.... What is the simplest way of doing it? Can anyone give me some hint? I am desperate here... trying to figure it out.. but I cannot find anything understandable... So far, I discovered how to … | |
Hello all, I need to do some simple project for school in java eclipse... so I went to android developer page and downloaded the adt-bundle for windows... I have 64 bit windows so I downloaded 64 version... I start it and it gives me the error `Android sdk content loader … | |
Hello, can anyone provide me with some sample code? VBA access. I need an insert into statement where form.control.value = some_column and another.form.control.combobox.value = some_column can anyone help? thanks | |
hello all, I want to make some simple database in access that would track student information, semesters etc... I have created basic tables like: students, professors, subjects.. now I am stuck with the most important part: semesters and subjects... here is the link [Click Here](http://prntscr.com/2jafl6)where you can see database relationship … | |
Hello all, I need to make some database... and lets say there is a *student* table, and the *student* table has many columns, a lot of columns.... they are all unique to the primary key, so dont worry about the normal forms... what I am in a doubt is: there … | |
Hello I have two tables: Students and Professors (both with usual info like name, last name, email... etc) I also need to have info about their knowledge of foreign languages, and I guess that should be a third table (languages for example) it should look like: Language_id, Language, Speaking, Writing, … | |
Hello all, I need to make a simple database, and then some windows application (possibly C#) connecting to it... but first... First I need to design and model a good and functional database, right? So I am stuck in it now :) and please help if you can. I dont … | |
hello all I am a beginner... I want to move a wordpress site from a local computer to live server... live server: plesk parallels I followed some tutorials and it says: you must create a new mySql database on server... ok I went to parallels plesk panel and I created … | |
Re: well, as far as I know, you can easily specify font for some element using CSS you only have to narrow down the selection of the element.... like: ul, li { font-size:14px; font-family:Arial, Helvetica, sans-serif; line-height:21px; text-align:left; } or if it belongs to some specific DIV.. name it.. and there … | |
Hello, on the top of the page I have a menu created in CSS.... with drop down lists... all looks nice.. later... I added wowslider right below... wowslider plugin is really cool... but the dropdown menus fall behind the slider! so I find it is because of z-index properties... and … | |
Hello all, I hope you can help me.. I got one assignment: to modify the existing website made of .asp pages. So, I got the working folder, with all the subfolders and files that make one website.... now, in order to start working on it, I need to get it … | |
Hello, I have a question and I thank everyone for helping me in advance. I am using Visual Studio 2010, ASP.NET and C#. I have a table in SQL server DB. Server page (news.aspx.cs) is collecting all the data from the table (`select * from news`). Using `container.Controls.Add(new LiteralControl(news.ToString()));` I … ![]() | |
Hello, can anyone explain to me this 960 grid psd file? I open it and see a web page picture and many grids and many layers... is it s functional website or those are just images?? please help me to understand this task... thank you | |
Re: > ed spams.. mail is not there.actualyy i need some relay setting. > please tell me about this setting. this is happening to me too.... I get this error: The SMTP server requires a secure connection or the client's identity is not verified. Must issue a STARTTLS command first. here … | |
hello, I am a beginner in ASP.NET and I really need your help. I have a simple database, I want to show list of names (customers) in a dropdown list and, according to what I click on the dropdown list, to get the table updated below... with data corresponding to … | |
Hello, I want to make a connection to MSSQL 2008 database, using Visual Studio 2010, ASP.NET C# web site I wrote this connection string in web.config file: <connectionStrings> <add name="konekcija" connectionString="data source=.\SQLEXPRESS;Initial Catalog=Movies;Integrated Security=True;" providerName="System.Data.SqlClient" /> </connectionStrings> Now I need to call that connection on a code behind the page... … | |
Hello, I need to make a cursor, which would call a stored procedure to do something for me... but the procedure needs dynamic parameters. first one, it has to retrieve existing ID number from a table and the second parameter will be new value updated... so, for every row, I … | |
hello, I cant start my Delphi... I had to format my PC .... so I installed it again and I cant start it normally... in the middle of loading bpls and stuff ti pops up: Failed to load IDE add in 'C:\Program Files\Borland\BDS\4.0\Bin\Borland.SCI.Gate.dll'. Exception has been thrown by the target … | |
Hello, who can tell me how to format a string in Delphi? I must format 09-120-123456 into: 091200123456 it is, remove the dashes and insert additional 0 in the middle to make a 13 character long string. I searched Internet, but I can't find anything understandable... like: [Format(<qReportIzpis."acDoc">,the result???)] this … | |
Hello, Is it possible to insert the data from dbgrid component into an SQL SERVER database table. The data that is in the grid is imported from Excel worksheet. It may look silly but I need to insert that data into a table. Any help is appreciated, thank you |
The End.